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