Extents2D.cs 360 B

123456789101112131415161718
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public struct Extents2D
  4. {
  5. public int X1 { get; }
  6. public int Y1 { get; }
  7. public int X2 { get; }
  8. public int Y2 { get; }
  9. public Extents2D(int x1, int y1, int x2, int y2)
  10. {
  11. X1 = x1;
  12. Y1 = y1;
  13. X2 = x2;
  14. Y2 = y2;
  15. }
  16. }
  17. }