2021-07-05 15:20:57 +00:00
|
|
|
groupshared int v[3];
|
2021-06-30 15:59:40 +00:00
|
|
|
|
|
|
|
struct tint_symbol_1 {
|
|
|
|
uint local_invocation_index : SV_GroupIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void main(tint_symbol_1 tint_symbol) {
|
|
|
|
const uint local_invocation_index = tint_symbol.local_invocation_index;
|
2021-07-30 14:08:06 +00:00
|
|
|
{
|
|
|
|
for(uint idx = local_invocation_index; (idx < 3u); idx = (idx + 1u)) {
|
|
|
|
const uint i = idx;
|
|
|
|
v[i] = 0;
|
|
|
|
}
|
2021-06-30 15:59:40 +00:00
|
|
|
}
|
|
|
|
GroupMemoryBarrierWithGroupSync();
|
|
|
|
v;
|
|
|
|
return;
|
|
|
|
}
|