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