ScreenScissorState.cs 257 B

123456789101112
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. struct ScreenScissorState
  4. {
  5. #pragma warning disable CS0649
  6. public ushort X;
  7. public ushort Width;
  8. public ushort Y;
  9. public ushort Height;
  10. #pragma warning restore CS0649
  11. }
  12. }