mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
8 lines
110 B
HLSL
8 lines
110 B
HLSL
[numthreads(1, 1, 1)]
|
|
void comp(uint3 id : SV_DispatchThreadID)
|
|
{
|
|
if ((id.x == 0u)) {
|
|
}
|
|
return;
|
|
}
|