blob: b1e36ec7ca9a670acf3e5e8e61d4bee7d37f9f62 [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
uint sb_rwatomicAnd(uint offset, uint value) {
uint original_value = 0;
sb_rw.InterlockedAnd(offset, value, original_value);
return original_value;
}
void atomicAnd_85a8d9() {
uint res = sb_rwatomicAnd(0u, 1u);
}
void fragment_main() {
atomicAnd_85a8d9();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
atomicAnd_85a8d9();
return;
}