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

15 lines
187 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;
}