1#version 450 2#extension GL_ARB_shader_ballot : enable 3#extension GL_KHR_shader_subgroup_basic : enable 4 5layout(location = 0) out uint result; 6 7void main (void) 8{ 9 result = gl_SubGroupSizeARB; 10} 11