dawn-cmake/test/intrinsics/gen/atomicMax/beccfc.wgsl.expected.wgsl

11 lines
170 B
WebGPU Shading Language
Raw Normal View History

var<workgroup> arg_0 : atomic<u32>;
fn atomicMax_beccfc() {
var res : u32 = atomicMax(&(arg_0), 1u);
}
[[stage(compute)]]
fn compute_main() {
atomicMax_beccfc();
}