| struct S { |
| int x; |
| uint a; |
| uint y; |
| }; |
| |
| struct compute_main_inputs { |
| uint tint_local_index : SV_GroupIndex; |
| }; |
| |
| |
| groupshared S wg[10]; |
| void compute_main_inner(uint tint_local_index) { |
| { |
| uint v = 0u; |
| v = tint_local_index; |
| while(true) { |
| uint v_1 = v; |
| if ((v_1 >= 10u)) { |
| break; |
| } |
| wg[v_1].x = 0; |
| uint v_2 = 0u; |
| InterlockedExchange(wg[v_1].a, 0u, v_2); |
| wg[v_1].y = 0u; |
| { |
| v = (v_1 + 1u); |
| } |
| continue; |
| } |
| } |
| GroupMemoryBarrierWithGroupSync(); |
| uint v_3 = 0u; |
| InterlockedExchange(wg[4].a, 1u, v_3); |
| } |
| |
| [numthreads(1, 1, 1)] |
| void compute_main(compute_main_inputs inputs) { |
| compute_main_inner(inputs.tint_local_index); |
| } |
| |