dawn-cmake/test/tint/bug/tint/1735.wgsl.expected.wgsl

13 lines
186 B
WebGPU Shading Language

struct S {
f : f32,
}
@group(0) @binding(0) var<storage, read> in : S;
@group(0) @binding(1) var<storage, read_write> out : S;
@compute @workgroup_size(1)
fn main() {
out = in;
}