GS: Allow full dirty rect on zero age targets.

Allows EE->GS transfers to invalidate targets updated in the current draw to be invalidated if they are fully overwritten by the transfer.
This commit is contained in:
TJnotJT
2025-07-29 21:48:12 -04:00
committed by lightningterror
parent b3be566426
commit fde045241f

View File

@@ -137,10 +137,6 @@ bool GSTextureCache::FullRectDirty(Target* target, u32 rgba_mask)
bool GSTextureCache::FullRectDirty(Target* target)
{
// Why?
if (target->m_age == 0)
return false;
return FullRectDirty(target, GSUtil::GetChannelMask(target->m_TEX0.PSM));
}