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