blob: 37b3119ad5c2264a3b10e588a21cb57e33f91591 [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
void sb_rwatomicStore(uint offset, int value) {
int ignored;
sb_rw.InterlockedExchange(offset, value, ignored);
}
void atomicStore_d1e9a6() {
sb_rwatomicStore(0u, 1);
}
void fragment_main() {
atomicStore_d1e9a6();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
atomicStore_d1e9a6();
return;
}