VertexBufferDrawState.cs 279 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// Draw state for non-indexed draws.
  5. /// </summary>
  6. struct VertexBufferDrawState
  7. {
  8. #pragma warning disable CS0649
  9. public int First;
  10. public int Count;
  11. #pragma warning restore CS0649
  12. }
  13. }