blob: ea1abc5d03921ee7aa5a4508576efbdb3ee22084 [file] [log] [blame]
RWByteAddressBuffer sb_rw : register(u0, space0);
int tint_atomicExchange(RWByteAddressBuffer buffer, uint offset, int value) {
int original_value = 0;
buffer.InterlockedExchange(offset, value, original_value);
return original_value;
}
void atomicExchange_f2e22f() {
int res = tint_atomicExchange(sb_rw, 0u, 1);
}
void fragment_main() {
atomicExchange_f2e22f();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
atomicExchange_f2e22f();
return;
}