blob: d31825d577da7cb1c9975f7fcc8145194c3510cc [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
uint sb_rwatomicExchange(uint offset, uint value) {
uint original_value = 0;
sb_rw.InterlockedExchange(offset, value, original_value);
return original_value;
}
void atomicExchange_d59712() {
uint arg_1 = 1u;
uint res = sb_rwatomicExchange(0u, arg_1);
}
void fragment_main() {
atomicExchange_d59712();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
atomicExchange_d59712();
return;
}