Cleanup present

This commit is contained in:
Isaac Marovitz 2024-05-27 10:34:16 -04:00
parent b7915ac3cf
commit eac8ac23ad
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
1 changed files with 0 additions and 6 deletions

View File

@ -174,10 +174,6 @@ namespace Ryujinx.Graphics.Metal
public void Present(CAMetalDrawable drawable, Texture src, Extents2D srcRegion, Extents2D dstRegion, bool isLinear)
{
EndCurrentPass();
SaveState();
// TODO: Clean this up
var textureInfo = new TextureCreateInfo((int)drawable.Texture.Width, (int)drawable.Texture.Height, (int)drawable.Texture.Depth, (int)drawable.Texture.MipmapLevelCount, (int)drawable.Texture.SampleCount, 0, 0, 0, Format.B8G8R8A8Unorm, 0, Target.Texture2D, SwizzleComponent.Red, SwizzleComponent.Green, SwizzleComponent.Blue, SwizzleComponent.Alpha);
var dst = new Texture(_device, this, textureInfo, drawable.Texture, 0, 0);
@ -191,8 +187,6 @@ namespace Ryujinx.Graphics.Metal
_commandBuffer = _commandQueue.CommandBuffer();
RestoreState();
// Cleanup
dst.Dispose();
}