blob: b83200a297aa0fa14476de9be7940b642aea268d [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
int sb_rwatomicXor(uint offset, int value) {
int original_value = 0;
sb_rw.InterlockedXor(offset, value, original_value);
return original_value;
}
RWByteAddressBuffer prevent_dce : register(u0, space2);
void atomicXor_c1b78c() {
int res = sb_rwatomicXor(0u, 1);
prevent_dce.Store(0u, asuint(res));
}
void fragment_main() {
atomicXor_c1b78c();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
atomicXor_c1b78c();
return;
}