blob: 4c7aa225470db4e8b8862c392346340534b1ba07 [file] [log] [blame]
@group(0) @binding(0)
var<storage, read_write> out : mat3x2<f32>;
@compute @workgroup_size(1)
fn f() {
var m = mat3x2<f32>();
out = mat3x2(m);
}