blob: 2a1f17fadd1be2175bb3b52ed8fe2cb5dc84b678 [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : array<mat4x3<f32>, 4>;
@group(0) @binding(1) var<storage, read_write> s : array<mat4x3<f32>, 4>;
@compute @workgroup_size(1)
fn f() {
s = u;
s[1] = u[2];
s[1][0] = u[0][1].zxy;
s[1][0].x = u[0][1].x;
}