1static const uint3 gl_WorkGroupSize = uint3(1u, 1u, 1u); 2 3void comp_main() 4{ 5} 6 7[numthreads(1, 1, 1)] 8void main() 9{ 10 comp_main(); 11} 12