mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-14 13:51:04 +00:00
15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
|
|
||
|
[numthreads(8,8,1)]
|
||
|
void main(uint3 tid : SV_DispatchThreadID )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[numTHreaDs(4,4,2)] // case insensitive
|
||
|
void main_aux1(uint3 tid : SV_DispatchThreadID )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[numthreads(1,4,8)]
|
||
|
void main_aux2(uint3 tid : SV_DispatchThreadID );
|
||
|
|