blob: 87104e48177b2f7c59c47e884d23b0d16f1e4a77 [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : array<mat4x3<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);
}