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