PrimitiveRestartState.cs 221 B

1234567891011
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// Primitive restart state.
  5. /// </summary>
  6. struct PrimitiveRestartState
  7. {
  8. public Boolean32 Enable;
  9. public int Index;
  10. }
  11. }