Fix VertexBuffers

Naive non-managed approach
This commit is contained in:
Isaac Marovitz
2024-03-19 19:02:05 -04:00
committed by Evan Husted
parent e2445990a5
commit fc7f09624c
2 changed files with 25 additions and 18 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace Ryujinx.Graphics.Metal
{
public struct BufferInfo
{
public IntPtr Handle;
public int Offset;
}
}