This commit is contained in:
Isaac Marovitz 2024-05-29 23:10:00 +01:00 committed by Isaac Marovitz
parent b0ba5d5da1
commit aae9dc0c2e
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);