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