blob: f05a461c15eba6254d31ee867ca5cbe840c76b0e [file] [log] [blame]
struct S {
a : mat4x4<f32>,
}
@group(0) @binding(0)
var<storage, read_write> v : S;
@compute @workgroup_size(1)
fn foo() {
v.a *= 2.0;
}