dawn-cmake/test/ptr_ref/store/global/i32.spvasm.expected.wgsl

9 lines
105 B
WebGPU Shading Language

var<private> I : i32 = 0;
[[stage(compute)]]
fn main() {
I = 123;
I = ((100 + 20) + 3);
return;
}