Warning about host map buffer creation

This commit is contained in:
Isaac Marovitz 2024-06-26 12:39:05 +01:00
parent 4dad6d12b9
commit f16693e4e1
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ namespace Ryujinx.Graphics.Metal
public BufferHandle Create(nint pointer, int size)
{
// TODO: This is the wrong Metal method, we need no-copy which SharpMetal isn't giving us.
var buffer = _device.NewBuffer(pointer, (ulong)size, MTLResourceOptions.ResourceStorageModeShared);
if (buffer == IntPtr.Zero)