blob: 3cf3b94196d7077bc20f37bb573a44be33fafeed [file] [log] [blame]
RWByteAddressBuffer prevent_dce : register(u0);
RWByteAddressBuffer sb_rw : register(u1);
uint sb_rwatomicAdd(uint offset, uint value) {
uint original_value = 0;
sb_rw.InterlockedAdd(offset, value, original_value);
return original_value;
}
uint atomicAdd_8a199a() {
uint arg_1 = 1u;
uint res = sb_rwatomicAdd(0u, arg_1);
return res;
}
void fragment_main() {
prevent_dce.Store(0u, asuint(atomicAdd_8a199a()));
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store(0u, asuint(atomicAdd_8a199a()));
return;
}