reset viewport before blit

This commit is contained in:
Samuliak 2024-05-25 08:39:45 +02:00 committed by Isaac Marovitz
parent e6e898b297
commit 57a173a671
2 changed files with 2 additions and 7 deletions

View file

@ -416,11 +416,6 @@ namespace Ryujinx.Graphics.Metal
{
int maxScissors = Math.Min(regions.Length, _currentState.Viewports.Length);
if (maxScissors == 0)
{
return;
}
_currentState.Scissors = new MTLScissorRect[maxScissors];
for (int i = 0; i < maxScissors; i++)