WIP V2: Experimental: Metal backend #441

Merged
GreemDev merged 369 commits from new-metal into master 2024-12-24 06:55:16 +00:00
Showing only changes of commit 401ad1f983 - Show all commits

View File

@ -327,12 +327,12 @@ namespace Ryujinx.Graphics.Metal
public void Release() public void Release()
{ {
Logger.Warning?.Print(LogClass.Gpu, "Not Implemented!"); Dispose();
} }
public void Dispose() public void Dispose()
{ {
Logger.Warning?.Print(LogClass.Gpu, "Not Implemented!"); MTLTexture.SetPurgeableState(MTLPurgeableState.Volatile);
} }
} }
} }