blob: 02a3b29d219ce98380f6c931514a68f2c5562220 [file] [log] [blame]
// flags: --hlsl_shader_model 62
enable f16;
@group(0) @binding(0) var<uniform> u : mat4x2<f16>;
fn a(m : mat4x2<f16>) {}
fn b(v : vec2<f16>) {}
fn c(f : f16) {}
@compute @workgroup_size(1)
fn f() {
a(u);
b(u[1]);
b(u[1].yx);
c(u[1].x);
c(u[1].yx.x);
}