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