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