blob: 1ab1324812b9f077fe4fc40a6ac13368cf00cf49 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : u32;
struct SB_RW {
arg_0 : atomic<u32>,
}
@group(0) @binding(1) var<storage, read_write> sb_rw : SB_RW;
fn atomicXor_54510e() -> u32 {
var arg_1 = 1u;
var res : u32 = atomicXor(&(sb_rw.arg_0), arg_1);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = atomicXor_54510e();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = atomicXor_54510e();
}