From e671d6b49cc373340fd67b3c5058cd25523f16dd Mon Sep 17 00:00:00 2001 From: Teodor Tanasoaia <28601907+teoxoy@users.noreply.github.com> Date: Mon, 5 Dec 2022 11:53:45 +0100 Subject: [PATCH] [wgsl-in] remove `workgroup_size` builtin --- src/front/wgsl/conv.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/front/wgsl/conv.rs b/src/front/wgsl/conv.rs index ba41648757..6da7ee4ced 100644 --- a/src/front/wgsl/conv.rs +++ b/src/front/wgsl/conv.rs @@ -32,7 +32,6 @@ pub fn map_built_in(word: &str, span: Span) -> Result> "local_invocation_id" => crate::BuiltIn::LocalInvocationId, "local_invocation_index" => crate::BuiltIn::LocalInvocationIndex, "workgroup_id" => crate::BuiltIn::WorkGroupId, - "workgroup_size" => crate::BuiltIn::WorkGroupSize, "num_workgroups" => crate::BuiltIn::NumWorkGroups, _ => return Err(Error::UnknownBuiltin(span)), })