blob: 5ceee23fe849102cafed41f47d14f14f09834471 [file] [log] [blame]
struct S {
f : f32,
}
@group(0) @binding(0) var<storage, read> in : array<S>;
@group(0) @binding(1) var<storage, read_write> out : array<S>;
@stage(compute) @workgroup_size(1)
fn main() {
out[0] = in[0];
}