struct SSBO { m : mat2x2, }; @group(0) @binding(0) var ssbo : SSBO; @stage(compute) @workgroup_size(1) fn f() { let v = ssbo.m; ssbo.m = v; }