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