blob: 99681620471761a575634f69caa54b7c9c1f28c4 [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : array<mat2x4<f32>, 4>;
@group(0) @binding(1) var<storage, read_write> s : array<mat2x4<f32>, 4>;
@compute @workgroup_size(1)
fn f() {
s = u;
s[1] = u[2];
s[1][0] = u[0][1].ywxz;
s[1][0].x = u[0][1].x;
}