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