diff options
| author | 2019-09-11 00:09:37 -0300 | |
|---|---|---|
| committer | 2019-09-11 00:09:37 -0300 | |
| commit | 6b997c8f7f904caa980ea364a3b1559e6122cdc4 (patch) | |
| tree | 73b3918945e06587200cecd7216c72080b19efbf /src | |
| parent | gl_rasterizer: Correct sRGB Fix regression (diff) | |
| download | yuzu-6b997c8f7f904caa980ea364a3b1559e6122cdc4.tar.gz yuzu-6b997c8f7f904caa980ea364a3b1559e6122cdc4.tar.xz yuzu-6b997c8f7f904caa980ea364a3b1559e6122cdc4.zip | |
renderer_opengl: Fix rebase mistake
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/renderer_opengl/renderer_opengl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.cpp b/src/video_core/renderer_opengl/renderer_opengl.cpp index d6e1e5aba..1e6ef66ab 100644 --- a/src/video_core/renderer_opengl/renderer_opengl.cpp +++ b/src/video_core/renderer_opengl/renderer_opengl.cpp | |||
| @@ -341,7 +341,7 @@ void RendererOpenGL::DrawScreenTriangles(const ScreenInfo& screen_info, float x, | |||
| 341 | ScreenRectVertex(x + w, y + h, texcoords.bottom * scale_u, right * scale_v), | 341 | ScreenRectVertex(x + w, y + h, texcoords.bottom * scale_u, right * scale_v), |
| 342 | }}; | 342 | }}; |
| 343 | 343 | ||
| 344 | state.textures[0].texture = screen_info.display_texture; | 344 | state.textures[0] = screen_info.display_texture; |
| 345 | state.framebuffer_srgb.enabled = screen_info.display_srgb; | 345 | state.framebuffer_srgb.enabled = screen_info.display_srgb; |
| 346 | state.AllDirty(); | 346 | state.AllDirty(); |
| 347 | state.Apply(); | 347 | state.Apply(); |