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