blob: 211822be545367bca9c109a1ab7b7bb33c6d21c1 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : i32;
struct SB_RW {
arg_0 : atomic<i32>,
}
@group(0) @binding(1) var<storage, read_write> sb_rw : SB_RW;
fn atomicExchange_f2e22f() -> i32 {
var res : i32 = atomicExchange(&(sb_rw.arg_0), 1i);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = atomicExchange_f2e22f();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = atomicExchange_f2e22f();
}