mark state as dirty

This commit is contained in:
Samuliak 2024-05-19 09:10:14 +02:00 committed by Isaac Marovitz
parent 348a37a355
commit ccce85e1bb
2 changed files with 84 additions and 36 deletions

View file

@ -16,6 +16,15 @@ namespace Ryujinx.Graphics.Metal
public bool Scissor = false;
public DirtyFlags() { }
public void MarkAll() {
Pipeline = true;
DepthStencil = true;
CullMode = true;
Winding = true;
Viewport = true;
Scissor = true;
}
}
[SupportedOSPlatform("macos")]