blob: 333e3dc4e9f8ede3ed299485c87149ff454e7119 [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : mat4x2<f32>;
@group(0) @binding(1) var<storage, read_write> s : mat4x2<f32>;
@compute @workgroup_size(1)
fn f() {
s = u;
s[1] = u[0];
s[1] = u[0].yx;
s[0][1] = u[1][0];
}