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