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