blob: 2c5ba505cc1073eb1a279eeb3b32f547272808da [file] [log] [blame]
struct Inner {
scalar_f32 : f32,
vec3_f32 : vec3<f32>,
mat2x4_f32 : mat2x4<f32>,
};
struct S {
inner : Inner,
};
@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() {
let t = in;
out = t;
}