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