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