blob: 897165d2a23158bbe2b135dfd6f8271b77db45cf [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 = 0u;
const uint x_9 = tint_atomicAnd(sb_rw, 0u, 1u);
res = x_9;
return;
}
void fragment_main_1() {
atomicAnd_85a8d9();
return;
}
void fragment_main() {
fragment_main_1();
return;
}
void compute_main_1() {
atomicAnd_85a8d9();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
compute_main_1();
return;
}