WIP: Experimental: Metal backend #439

Closed
GreemDev wants to merge 374 commits from metal into master
Showing only changes of commit e6c2e5873c - 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);
} }
} }
} }