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