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