blob: 4a32f1f400c92e9b2adf8490d0247551e8d993f0 [file] [log] [blame]
groupshared float2x4 w;
void tint_zero_workgroup_memory(uint local_idx) {
if ((local_idx < 1u)) {
w = float2x4((0.0f).xxxx, (0.0f).xxxx);
}
GroupMemoryBarrierWithGroupSync();
}
cbuffer cbuffer_u : register(b0) {
uint4 u[2];
};
struct tint_symbol_1 {
uint local_invocation_index : SV_GroupIndex;
};
float2x4 u_load(uint offset) {
const uint scalar_offset = ((offset + 0u)) / 4;
const uint scalar_offset_1 = ((offset + 16u)) / 4;
return float2x4(asfloat(u[scalar_offset / 4]), asfloat(u[scalar_offset_1 / 4]));
}
void f_inner(uint local_invocation_index) {
tint_zero_workgroup_memory(local_invocation_index);
w = u_load(0u);
w[1] = asfloat(u[0]);
w[1] = asfloat(u[0]).ywxz;
w[0][1] = asfloat(u[1].x);
}
[numthreads(1, 1, 1)]
void f(tint_symbol_1 tint_symbol) {
f_inner(tint_symbol.local_invocation_index);
return;
}