This commit is contained in:
Isaac Marovitz
2024-05-29 23:10:00 +01:00
committed by Evan Husted
parent db24e0f6fe
commit fe4fa6f4db
2 changed files with 20 additions and 22 deletions

View File

@@ -54,11 +54,6 @@ namespace Ryujinx.Graphics.Metal
Logger.Warning?.Print(LogClass.Gpu, "Not Implemented!");
}
public BufferHandle CreateBuffer(int size, BufferAccess access, BufferHandle storageHint)
{
return CreateBuffer(size, access);
}
public BufferHandle CreateBuffer(IntPtr pointer, int size)
{
var buffer = _device.NewBuffer(pointer, (ulong)size, MTLResourceOptions.ResourceStorageModeShared);