Simplify alpha test code

This commit is contained in:
wheremyfoodat 2024-07-15 00:46:15 +03:00
parent b384cb8ad9
commit ea59933b18

View file

@ -358,13 +358,13 @@ void FragmentGenerator::getAlphaOperation(std::string& shader, TexEnvConfig::Ope
void FragmentGenerator::applyAlphaTest(std::string& shader, const PICARegs& regs) {
const u32 alphaConfig = regs[InternalRegs::AlphaTestConfig];
const auto function = static_cast<CompareFunction>(Helpers::getBits<4, 3>(alphaConfig));
// Alpha test disabled
if (Helpers::getBit<0>(alphaConfig) == 0) {
if (Helpers::getBit<0>(alphaConfig) == 0 || function == CompareFunction::Always) {
return;
}
const auto function = static_cast<CompareFunction>(Helpers::getBits<4, 3>(alphaConfig));
shader += "if (";
switch (function) {
case CompareFunction::Never: shader += "true"; break;