diff options
author | gdkchan <gab.dark.100@gmail.com> | 2022-01-11 16:15:17 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 20:15:17 +0100 |
commit | 6e0799580f0d1b473a79471c5d365c6524d97a86 (patch) | |
tree | 94df6b825227d6f35c8bf5673c3b25fc8235c47f /Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs | |
parent | ef24c8983dc3971cd906568d337e49be694ee542 (diff) |
Fix render target clear when sizes mismatch (#2994)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs b/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs index 9d8ad765..a6a5a2ab 100644 --- a/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs +++ b/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs @@ -754,7 +754,9 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed public int DrawTextureTextureId; public int DrawTextureSrcX; public int DrawTextureSrcY; - public fixed uint Reserved10B0[44]; + public fixed uint Reserved10B0[18]; + public uint ClearFlags; + public fixed uint Reserved10FC[25]; public Array16<VertexAttribState> VertexAttribState; public fixed uint Reserved11A0[31]; public RtControl RtControl; |