IndexBufferState.cs 446 B

12345678910111213141516171819
  1. using Ryujinx.Graphics.GAL;
  2. namespace Ryujinx.Graphics.Gpu.State
  3. {
  4. /// <summary>
  5. /// GPU index buffer state.
  6. /// This is used on indexed draws.
  7. /// </summary>
  8. struct IndexBufferState
  9. {
  10. #pragma warning disable CS0649
  11. public GpuVa Address;
  12. public GpuVa EndAddress;
  13. public IndexType Type;
  14. public int First;
  15. public int Count;
  16. #pragma warning restore CS0649
  17. }
  18. }