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