mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-04 20:53:57 +00:00
13 lines
159 B
HLSL
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;
|
|
}
|