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