/ src / Ryujinx.Graphics.Gpu / Memory / IndexBuffer.cs
IndexBuffer.cs
 1  using Ryujinx.Graphics.GAL;
 2  using Ryujinx.Memory.Range;
 3  
 4  namespace Ryujinx.Graphics.Gpu.Memory
 5  {
 6      /// <summary>
 7      /// GPU Index Buffer information.
 8      /// </summary>
 9      struct IndexBuffer
10      {
11          public MultiRange Range;
12          public IndexType Type;
13      }
14  }