dawn-cmake/test/tint/builtins/gen/literal/atomicAdd/d5db1d.wgsl.expected.wgsl

14 lines
267 B
WebGPU Shading Language

var<workgroup> arg_0 : atomic<u32>;
fn atomicAdd_d5db1d() {
var res : u32 = atomicAdd(&(arg_0), 1u);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : u32;
@compute @workgroup_size(1)
fn compute_main() {
atomicAdd_d5db1d();
}