mark state as dirty

This commit is contained in:
Samuliak
2024-05-19 09:10:14 +02:00
committed by Evan Husted
parent bc9a26bbf2
commit b5f15de64f
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")]