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