namespace Ryujinx.Graphics.Gpu.Memory { /// /// GPU Vertex Buffer information. /// struct VertexBuffer { public ulong Address; public ulong Size; public int Stride; public int Divisor; } }