GS/HW: Preload uploads even when CPU CLUT is on

This commit is contained in:
Stenzek 2023-06-11 21:52:26 +10:00 committed by Connor McLaughlin
parent 2c175c0c7e
commit 4c67c165fa
1 changed files with 2 additions and 1 deletions

View File

@ -1701,7 +1701,8 @@ void GSRendererHW::Draw()
} }
} }
} }
else if (((fm & fm_mask) != 0) || // Some channels masked
if (((fm & fm_mask) != 0) || // Some channels masked
!IsDiscardingDstColor() || !PrimitiveCoversWithoutGaps() || // Using Dst Color or draw has gaps !IsDiscardingDstColor() || !PrimitiveCoversWithoutGaps() || // Using Dst Color or draw has gaps
(process_texture && m_cached_ctx.TEX0.TBP0 >= m_cached_ctx.FRAME.Block() && m_cached_ctx.TEX0.TBP0 < frame_end_bp)) // Tex is RT (process_texture && m_cached_ctx.TEX0.TBP0 >= m_cached_ctx.FRAME.Block() && m_cached_ctx.TEX0.TBP0 < frame_end_bp)) // Tex is RT
{ {