blob: f403fd377d8cd09dc4a571d9715eee22fb92820b [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];
}