blob: e5ae1a54e63ef5632bc25033e17ef228df0bf183 [file] [log] [blame]
@group(0) @binding(0)
var<storage, read> in : mat3x3<f32>;
@group(0) @binding(1)
var<storage, read_write> out : mat3x3<f32>;
@compute @workgroup_size(1)
fn main() {
out = in;
}