blob: 72c9355c8bc77ff4ad311f9a34938067744bcee7 [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;
}