blob: 2a476a7a1fc961a22ad2b7d416034a5c44f434ac [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;
}