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