blob: 9841fd418110b59eceda532ec7d1a0d05fda28b8 [file] [log] [blame]
[[group(0), binding(0)]]
var<storage, read> in : vec2<i32>;
[[group(0), binding(1)]]
var<storage, read_write> out : vec2<i32>;
[[stage(compute), workgroup_size(1)]]
fn main() {
out = in;
}