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