blob: 1d64f9d7e114987005f744cd0590b299c7faa731 [file] [log] [blame]
const m = mat4x3(0.0, 1.0, 2.0,
3.0, 4.0, 5.0,
6.0, 7.0, 8.0,
9.0, 10.0, 11.0);
@group(0) @binding(0)
var<storage, read_write> out : mat4x3<f32>;
@compute @workgroup_size(1)
fn f() {
out = m;
}