blob: b274bfd8165410be68318b2a459e0ce363a96117 [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;
}