blob: 58d1577f8537c228bb885e03d93163a6b8d5e902 [file]
struct f_inputs {
uint tint_local_index : SV_GroupIndex;
};
cbuffer cbuffer_u : register(b0) {
uint4 u[2];
};
groupshared float3x2 w;
float3x2 v(uint start_byte_offset) {
uint4 v_1 = u[(start_byte_offset / 16u)];
float2 v_2 = asfloat((((((start_byte_offset % 16u) / 4u) == 2u)) ? (v_1.zw) : (v_1.xy)));
uint4 v_3 = u[((8u + start_byte_offset) / 16u)];
float2 v_4 = asfloat(((((((8u + start_byte_offset) % 16u) / 4u) == 2u)) ? (v_3.zw) : (v_3.xy)));
uint4 v_5 = u[((16u + start_byte_offset) / 16u)];
return float3x2(v_2, v_4, asfloat(((((((16u + start_byte_offset) % 16u) / 4u) == 2u)) ? (v_5.zw) : (v_5.xy))));
}
void f_inner(uint tint_local_index) {
if ((tint_local_index < 1u)) {
w = float3x2((0.0f).xx, (0.0f).xx, (0.0f).xx);
}
GroupMemoryBarrierWithGroupSync();
w = v(0u);
w[1u] = asfloat(u[0u].xy);
w[1u] = asfloat(u[0u].xy).yx;
w[0u].y = asfloat(u[0u].z);
}
[numthreads(1, 1, 1)]
void f(f_inputs inputs) {
f_inner(inputs.tint_local_index);
}