blob: 1bcbe098b8b3c38f8cd8cce8a1906777ab06d754 [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
uint tint_atomicSub(RWByteAddressBuffer buffer, uint offset, uint value) {
uint original_value = 0;
buffer.InterlockedAdd(offset, -value, original_value);
return original_value;
}
void atomicSub_15bfc9() {
uint res = 0u;
const uint x_9 = tint_atomicSub(sb_rw, 0u, 1u);
res = x_9;
return;
}
void fragment_main_1() {
atomicSub_15bfc9();
return;
}
void fragment_main() {
fragment_main_1();
return;
}
void compute_main_1() {
atomicSub_15bfc9();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
compute_main_1();
return;
}