blob: 9933db6f5f32034b361a734ef1a69ce77d848b9c [file] [log] [blame]
struct SSBO {
m : mat2x2<f32>;
}
[[group(0), binding(0)]] var<storage, read_write> ssbo : SSBO;
[[stage(compute), workgroup_size(1)]]
fn f() {
let v = ssbo.m;
ssbo.m = v;
}