blob: af9ce13220b85d0c5afbc2e5d2109db0674e802f [file] [log] [blame]
enable f16;
@group(0) @binding(0) var<uniform> u : mat4x2<f16>;
var<private> p : mat4x2<f16>;
@compute @workgroup_size(1)
fn f() {
p = u;
p[1] = u[0];
p[1] = u[0].yx;
p[0][1] = u[1][0];
}