IndexBuffer.cs 194 B

123456789101112
  1. using Ryujinx.Graphics.GAL;
  2. namespace Ryujinx.Graphics.Gpu.Memory
  3. {
  4. struct IndexBuffer
  5. {
  6. public ulong Address;
  7. public ulong Size;
  8. public IndexType Type;
  9. }
  10. }