Merge pull request #1803 from Igalia/siglesias/fix-gl_SubGroupSizeARB-tese-geom

Fix gl_SubGroupSizeARB builtin treatment
diff --git a/glslang/MachineIndependent/Initialize.cpp b/glslang/MachineIndependent/Initialize.cpp
index ba79e18..fc362e0 100644
--- a/glslang/MachineIndependent/Initialize.cpp
+++ b/glslang/MachineIndependent/Initialize.cpp
@@ -8176,12 +8176,6 @@
                 BuiltInVariable("gl_SubGroupSizeARB", EbvSubGroupSize, symbolTable);
         }
 
-        if (spvVersion.vulkan > 0)
-            // Treat "gl_SubGroupSizeARB" as shader input instead of uniform for Vulkan
-            SpecialQualifier("gl_SubGroupSizeARB", EvqVaryingIn, EbvSubGroupSize, symbolTable);
-	else
-            BuiltInVariable("gl_SubGroupSizeARB", EbvSubGroupSize, symbolTable);
-
         // GL_KHR_shader_subgroup
         if ((profile == EEsProfile && version >= 310) ||
             (profile != EEsProfile && version >= 140)) {