blob: db973ec47faf39d254e63a0a286c13bb5ea65f0b [file] [log] [blame]
cbuffer _UniformBuffer : register(b0, space0)
{
float4 _7_a : packoffset(c0);
float4 _7_b : packoffset(c1);
uint2 _7_c : packoffset(c2);
uint2 _7_d : packoffset(c2.z);
int3 _7_e : packoffset(c3);
int3 _7_f : packoffset(c4);
};
static float4 sk_FragColor;
struct SPIRV_Cross_Output
{
float4 sk_FragColor : SV_Target0;
};
void frag_main()
{
bool4 expectTTFF = bool4(true, true, false, false);
bool4 expectFFTT = bool4(false, false, true, true);
bool4 expectTTTT = bool4(true, true, true, true);
sk_FragColor.x = float(bool4(_7_a.x == _7_b.x, _7_a.y == _7_b.y, _7_a.z == _7_b.z, _7_a.w == _7_b.w).x);
sk_FragColor.y = float(bool2(_7_c.x == _7_d.x, _7_c.y == _7_d.y).y);
sk_FragColor.z = float(bool3(_7_e.x == _7_f.x, _7_e.y == _7_f.y, _7_e.z == _7_f.z).z);
bool _72 = false;
if (any(expectTTFF))
{
_72 = true;
}
else
{
_72 = any(expectFFTT);
}
bool _77 = false;
if (_72)
{
_77 = true;
}
else
{
_77 = any(expectTTTT);
}
sk_FragColor.w = float(_77);
}
SPIRV_Cross_Output main()
{
frag_main();
SPIRV_Cross_Output stage_output;
stage_output.sk_FragColor = sk_FragColor;
return stage_output;
}