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