mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-11 12:53:41 +00:00
8 lines
172 B
Plaintext
8 lines
172 B
Plaintext
RWByteAddressBuffer buffer;
|
|
|
|
[numthreads(64, 1, 1)]
|
|
void main( uint3 dispatchThreadID : SV_DispatchThreadID)
|
|
{
|
|
if(dispatchThreadID.x == 0)
|
|
buffer.Store(0, 2);
|
|
} |