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