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