wgpu/tests/out/hlsl/globals.hlsl
2021-08-13 23:01:25 -04:00

13 lines
159 B
HLSL

static const bool Foo = true;
groupshared float wg[10];
groupshared uint at;
[numthreads(1, 1, 1)]
void main()
{
wg[3] = 1.0;
at = 2u;
return;
}