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