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