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