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