VertexBufferDrawState.cs 217 B

1234567891011
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// Draw state for non-indexed draws.
  5. /// </summary>
  6. struct VertexBufferDrawState
  7. {
  8. public int First;
  9. public int Count;
  10. }
  11. }