aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/RectangleF.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2022-01-11 16:15:17 -0300
committerGitHub <noreply@github.com>2022-01-11 20:15:17 +0100
commit6e0799580f0d1b473a79471c5d365c6524d97a86 (patch)
tree94df6b825227d6f35c8bf5673c3b25fc8235c47f /Ryujinx.Graphics.GAL/RectangleF.cs
parentef24c8983dc3971cd906568d337e49be694ee542 (diff)
Fix render target clear when sizes mismatch (#2994)
Diffstat (limited to 'Ryujinx.Graphics.GAL/RectangleF.cs')
-rw-r--r--Ryujinx.Graphics.GAL/RectangleF.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Ryujinx.Graphics.GAL/RectangleF.cs b/Ryujinx.Graphics.GAL/RectangleF.cs
index c58aabf0..cf166781 100644
--- a/Ryujinx.Graphics.GAL/RectangleF.cs
+++ b/Ryujinx.Graphics.GAL/RectangleF.cs
@@ -2,16 +2,16 @@ namespace Ryujinx.Graphics.GAL
{
public struct RectangleF
{
- public float X { get; }
- public float Y { get; }
- public float Width { get; }
+ public float X { get; }
+ public float Y { get; }
+ public float Width { get; }
public float Height { get; }
public RectangleF(float x, float y, float width, float height)
{
- X = x;
- Y = y;
- Width = width;
+ X = x;
+ Y = y;
+ Width = width;
Height = height;
}
}