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