Adjust function signature

This commit is contained in:
Isaac Marovitz 2024-01-14 16:50:05 -05:00
parent 1d36be2537
commit 45f5d99436
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
1 changed files with 1 additions and 6 deletions

View File

@ -47,14 +47,9 @@ namespace Ryujinx.Graphics.Metal
throw new NotImplementedException();
}
public BufferHandle CreateBuffer(int size, BufferHandle storageHint)
{
return CreateBuffer(size, BufferAccess.Default);
}
public BufferHandle CreateBuffer(int size, BufferAccess access, BufferHandle storageHint)
{
throw new NotImplementedException();
return CreateBuffer(size, access);
}
public BufferHandle CreateBuffer(IntPtr pointer, int size)