Ryujinx/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
2020-01-09 02:13:00 +01:00

10 lines
193 B
C#

namespace Ryujinx.Graphics.Gpu.Memory
{
struct VertexBuffer
{
public ulong Address;
public ulong Size;
public int Stride;
public int Divisor;
}
}