blob: 2268f30589b376e99e8a380d0f8f1ae5a7d699d4 [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
uint tint_atomicOr(RWByteAddressBuffer buffer, uint offset, uint value) {
uint original_value = 0;
buffer.InterlockedOr(offset, value, original_value);
return original_value;
}
void atomicOr_5e95d4() {
uint arg_1 = 0u;
uint res = 0u;
arg_1 = 1u;
const uint x_13 = tint_atomicOr(sb_rw, 0u, arg_1);
res = x_13;
return;
}
void fragment_main_1() {
atomicOr_5e95d4();
return;
}
void fragment_main() {
fragment_main_1();
return;
}
void compute_main_1() {
atomicOr_5e95d4();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
compute_main_1();
return;
}