Isaac Marovitz 8dca53685a Fix VertexBuffers
Naive non-managed approach
2024-09-28 19:03:01 -04:00

11 lines
150 B
C#

using System;
namespace Ryujinx.Graphics.Metal
{
public struct BufferInfo
{
public IntPtr Handle;
public int Offset;
}
}