blob: 3d5ca68c5205e80240f036c5e1a0f9f94bea35cc [file] [log] [blame]
enable f16;
@group(0) @binding(0) var<uniform> u : array<mat4x2<f16>, 4>;
fn a(a : array<mat4x2<f16>, 4>) {
}
fn b(m : mat4x2<f16>) {
}
fn c(v : vec2<f16>) {
}
fn d(f : f16) {
}
@compute @workgroup_size(1)
fn f() {
a(u);
b(u[1]);
c(u[1][0].yx);
d(u[1][0].yx.x);
}