blob: c2dbd19e89f7712229edd95d2cfef5ec8f771b69 [file] [log] [blame]
static uint local_invocation_index_1 = 0u;
groupshared int arg_0;
void atomicStore_8bea94() {
int atomic_result = 0;
InterlockedExchange(arg_0, 1, atomic_result);
return;
}
void compute_main_inner(uint local_invocation_index) {
int atomic_result_1 = 0;
InterlockedExchange(arg_0, 0, atomic_result_1);
GroupMemoryBarrierWithGroupSync();
atomicStore_8bea94();
return;
}
void compute_main_1() {
compute_main_inner(local_invocation_index_1);
return;
}
struct tint_symbol_1 {
uint local_invocation_index_1_param : SV_GroupIndex;
};
void compute_main_inner_1(uint local_invocation_index_1_param) {
{
int atomic_result_2 = 0;
InterlockedExchange(arg_0, 0, atomic_result_2);
}
GroupMemoryBarrierWithGroupSync();
local_invocation_index_1 = local_invocation_index_1_param;
compute_main_1();
}
[numthreads(1, 1, 1)]
void compute_main(tint_symbol_1 tint_symbol) {
compute_main_inner_1(tint_symbol.local_invocation_index_1_param);
return;
}