blob: e0b647ed8d6c1002539cc64def13da82d6b10235 [file] [log] [blame]
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;
}