chore: change BufferHolder.GetHandle() to a getter for the handle instead
This commit is contained in:
parent
809127fc6f
commit
1ac66c3d92
1 changed files with 6 additions and 3 deletions
|
|
@ -364,10 +364,13 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
}
|
||||
}
|
||||
|
||||
public BufferHandle GetHandle()
|
||||
public BufferHandle Handle
|
||||
{
|
||||
ulong handle = _bufferHandle;
|
||||
return Unsafe.As<ulong, BufferHandle>(ref handle);
|
||||
get
|
||||
{
|
||||
ulong handle = _bufferHandle;
|
||||
return Unsafe.As<ulong, BufferHandle>(ref handle);
|
||||
}
|
||||
}
|
||||
|
||||
public nint Map(int offset, int mappingSize)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue