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