Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git] / Test / hlsl.numthreads.comp
1
2 [numthreads(8,8,1)]
3 void main(uint3 tid : SV_DispatchThreadID )
4 {
5 }
6
7 [numthreads(1,4,8)]
8 void main_aux2(uint3 tid : SV_DispatchThreadID )
9 {
10 }
11