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