ScissorState.cs 308 B

1234567891011121314
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. struct ScissorState
  4. {
  5. #pragma warning disable CS0649
  6. public Boolean32 Enable;
  7. public ushort X1;
  8. public ushort X2;
  9. public ushort Y1;
  10. public ushort Y2;
  11. public uint Padding;
  12. #pragma warning restore CS0649
  13. }
  14. }