blob: dd3bbf5a765bfc5e53f44c8ee238de58239b4e47 [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
uint sb_rwatomicLoad(uint offset) {
uint value = 0;
sb_rw.InterlockedOr(offset, 0, value);
return value;
}
void atomicLoad_fe6cc3() {
uint res = 0u;
const uint x_9 = sb_rwatomicLoad(0u);
res = x_9;
return;
}
void fragment_main_1() {
atomicLoad_fe6cc3();
return;
}
void fragment_main() {
fragment_main_1();
return;
}
void compute_main_1() {
atomicLoad_fe6cc3();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
compute_main_1();
return;
}