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