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