diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-08-11 19:44:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-11 19:44:41 -0300 |
| commit | 0ba4ade8f1fa64e2bda5c4b1e0c5b37e10d51c80 (patch) | |
| tree | 74653fad02702bc35cf7f006fcc9e470da217644 /Ryujinx.Graphics.OpenGL/Renderer.cs | |
| parent | 3148c0c21cb45a92ff77344027757fb4808bb3cb (diff) | |
Ensure render scale is initialized to 1 on the backend (#2543)
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/Renderer.cs')
| -rw-r--r-- | Ryujinx.Graphics.OpenGL/Renderer.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.OpenGL/Renderer.cs b/Ryujinx.Graphics.OpenGL/Renderer.cs index 22648fd1..01072176 100644 --- a/Ryujinx.Graphics.OpenGL/Renderer.cs +++ b/Ryujinx.Graphics.OpenGL/Renderer.cs @@ -144,6 +144,7 @@ namespace Ryujinx.Graphics.OpenGL GL.Arb.MaxShaderCompilerThreads(Math.Min(Environment.ProcessorCount, 8)); } + _pipeline.Initialize(); _counters.Initialize(); } |
