blob: d0e30a4659f9128112c4ae2c41b02762563bb8a6 [file] [log] [blame]
static uint local_invocation_index_1 = 0u;
groupshared int arg_0;
void atomicExchange_e114ba() {
int arg_1 = 0;
int res = 0;
arg_1 = 1;
int atomic_result = 0;
InterlockedExchange(arg_0, arg_1, atomic_result);
const int x_15 = atomic_result;
res = x_15;
return;
}
void compute_main_inner(uint local_invocation_index) {
int atomic_result_1 = 0;
InterlockedExchange(arg_0, 0, atomic_result_1);
GroupMemoryBarrierWithGroupSync();
atomicExchange_e114ba();
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;
}