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