mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
Adjust function signature
This commit is contained in:
parent
dff9046f55
commit
e7197877a2
1 changed files with 1 additions and 6 deletions
|
|
@ -47,14 +47,9 @@ namespace Ryujinx.Graphics.Metal
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public BufferHandle CreateBuffer(int size, BufferHandle storageHint)
|
|
||||||
{
|
|
||||||
return CreateBuffer(size, BufferAccess.Default);
|
|
||||||
}
|
|
||||||
|
|
||||||
public BufferHandle CreateBuffer(int size, BufferAccess access, BufferHandle storageHint)
|
public BufferHandle CreateBuffer(int size, BufferAccess access, BufferHandle storageHint)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
return CreateBuffer(size, access);
|
||||||
}
|
}
|
||||||
|
|
||||||
public BufferHandle CreateBuffer(IntPtr pointer, int size)
|
public BufferHandle CreateBuffer(IntPtr pointer, int size)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue