blob: 59e08f0f9b5560116cb8cb221a7ddb8a323c2091 [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 res = sb_rwatomicExchange(0u, 1u);
}
void fragment_main() {
atomicExchange_d59712();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
atomicExchange_d59712();
return;
}