diff options
author | gdkchan <gab.dark.100@gmail.com> | 2020-09-23 20:48:34 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 09:48:34 +1000 |
commit | bd28ce90e6df04b5b15a5c1149523f3742af38cc (patch) | |
tree | 4d30eaf20b8549e292896e3a7f9fc2aecacfbc2c /Ryujinx.Graphics.Gpu/Engine/MethodClear.cs | |
parent | e00ca92063b9dda7b3272f6461610743cfa83ad5 (diff) |
Implement small indexed draws and other fixes to make guest Vulkan work (#1558)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Engine/MethodClear.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Engine/MethodClear.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Engine/MethodClear.cs b/Ryujinx.Graphics.Gpu/Engine/MethodClear.cs index 5da87e6c..82c4a990 100644 --- a/Ryujinx.Graphics.Gpu/Engine/MethodClear.cs +++ b/Ryujinx.Graphics.Gpu/Engine/MethodClear.cs @@ -30,7 +30,7 @@ namespace Ryujinx.Graphics.Gpu.Engine UpdateRenderTargetState(state, useControl: false, singleUse: index); - TextureManager.CommitGraphicsBindings(); + TextureManager.UpdateRenderTargets(); bool clearDepth = (argument & 1) != 0; bool clearStencil = (argument & 2) != 0; |