mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
a22f7dbb71
For example: [numthreads(2+2, 2*3, (1+FOO)*BAR)] This will result in a thread count (4, 6, 8).
16 lines
222 B
Plaintext
16 lines
222 B
Plaintext
|
|
uniform int bound;
|
|
|
|
#define FOO 3
|
|
#define BAR 2
|
|
|
|
[numthreads(2+2, 2*3, (1+FOO)*BAR)]
|
|
float4 main() : SV_TARGET
|
|
{
|
|
[unroll(5*2 + 1) ]
|
|
for (int x=0; x<bound; ++x)
|
|
;
|
|
|
|
return float4(0,0,0,0);
|
|
}
|