using Ryujinx.Graphics.GAL; using Ryujinx.Memory.Range; namespace Ryujinx.Graphics.Gpu.Memory { /// /// GPU Index Buffer information. /// struct IndexBuffer { public MultiRange Range; public IndexType Type; } }