IndexBuffer.cs 269 B

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