blob: 50e4055b1d30a6c9770c4aaa31dd45b36e0b19a2 [file] [log] [blame]
var<private> m = mat4x4(vec4<f32>(0.0f, 1.0f, 2.0f, 3.0f), vec4<f32>(4.0f, 5.0f, 6.0f, 7.0f), vec4<f32>(8.0f, 9.0f, 10.0f, 11.0f), vec4<f32>(12.0f, 13.0f, 14.0f, 15.0f));
@group(0) @binding(0) var<storage, read_write> out : mat4x4<f32>;
@compute @workgroup_size(1)
fn f() {
out = m;
}