blob: d354ee8531afa10a67fd316fb611e3c6b560d0c1 [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);
}