dispose temporary metal buffer

This commit is contained in:
Samuliak 2024-05-25 14:48:07 +02:00 committed by Isaac Marovitz
commit 58e09e72f1

View file

@ -223,7 +223,7 @@ namespace Ryujinx.Graphics.Metal
); );
// TODO: Dispose the buffer // TODO: Dispose the buffer
return new PinnedSpan<byte>(mtlBuffer.Contents.ToPointer(), (int)length); return new PinnedSpan<byte>(mtlBuffer.Contents.ToPointer(), (int)length, () => mtlBuffer.Dispose());
} }
} }