GS/TC: Invalidate alpha on overlapping targets with no alpha

This commit is contained in:
refractionpcsx2 2023-10-21 18:34:59 +01:00
parent 3e4be2c800
commit 489fdc5566
1 changed files with 7 additions and 0 deletions

View File

@ -2847,6 +2847,13 @@ void GSTextureCache::InvalidateVideoMem(const GSOffset& off, const GSVector4i& r
}
}
}
// This is a situation where it is uploading in to the alpha channel but that is not part of the mask for the target format.
// So we need to make sure the alpha is not marked as valid. (Juiced does a shuffle on the Z24 depth, making the alpha valid data).
else if (GSUtil::GetChannelMask(psm) == 0x8 && GSUtil::GetChannelMask(t->m_TEX0.PSM) == 0x7 && t->Overlaps(bp, bw, psm, r))
{
t->m_valid_alpha_high &= !(psm == PSMT8H || psm == PSMT4HH);
t->m_valid_alpha_low &= !(psm == PSMT8H || psm == PSMT4HL);
}
}
}
}