RWByteAddressBuffer sb_rw : register(u0, space0); | |
int tint_atomicExchange(RWByteAddressBuffer buffer, uint offset, int value) { | |
int original_value = 0; | |
buffer.InterlockedExchange(offset, value, original_value); | |
return original_value; | |
} | |
void atomicExchange_f2e22f() { | |
int arg_1 = 1; | |
int res = tint_atomicExchange(sb_rw, 0u, arg_1); | |
} | |
void fragment_main() { | |
atomicExchange_f2e22f(); | |
return; | |
} | |
[numthreads(1, 1, 1)] | |
void compute_main() { | |
atomicExchange_f2e22f(); | |
return; | |
} |