blob: 89f06fbafe81b54e016ea8c69f4cd4faa60acfb9 [file] [log] [blame]
const m = mat2x3(0.0, 1.0, 2.0,
3.0, 4.0, 5.0);
@group(0) @binding(0)
var<storage, read_write> out : mat2x3<f32>;
@compute @workgroup_size(1)
fn f() {
out = m;
}