using Ryujinx.Memory.Range; namespace Ryujinx.Graphics.Gpu.Memory { /// /// GPU Vertex Buffer information. /// struct VertexBuffer { public MultiRange Range; public int Stride; public int Divisor; } }