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