blob: e33a24c3f164396a497d78ae7c6fab608691d48f [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : array<mat2x3<f32>, 4>;
@compute @workgroup_size(1)
fn f() {
let t = transpose(u[2]);
let l = length(u[0][1].zxy);
let a = abs(u[0][1].zxy.x);
}