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