blob: 36e15933cfcb3e5ab3fc65bb47d4efa35eff8fd2 [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : vec2<u32>;
@group(0) @binding(1) var<storage, read_write> s: vec2<u32>;
@compute @workgroup_size(1)
fn main() {
let x = u;
s = x;
}