diff options
| author | Feng Chen <VonChenPlus@gmail.com> | 2022-11-04 14:39:42 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-04 02:39:42 -0400 |
| commit | 75596c07e0fc1462c2a19484e168f4944c33d3d3 (patch) | |
| tree | 1aa919ea76f467c51b3fc591a72c57f5ade92560 /src/video_core/renderer_opengl/gl_rasterizer.cpp | |
| parent | ece22fcbc7f120dd2929c60545b81f0e3211c028 (diff) | |
video_core: Fix SNORM texture buffer emulating error (#9001)
Diffstat (limited to 'src/video_core/renderer_opengl/gl_rasterizer.cpp')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp index 79d7908d4..72e314d39 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp @@ -618,11 +618,11 @@ void RasterizerOpenGL::SyncViewport() { } flags[Dirty::Viewport0 + index] = false; - if (!regs.viewport_transform_enabled) { - const auto x = static_cast<GLfloat>(regs.render_area.x); - const auto y = static_cast<GLfloat>(regs.render_area.y); - const auto width = static_cast<GLfloat>(regs.render_area.width); - const auto height = static_cast<GLfloat>(regs.render_area.height); + if (!regs.viewport_scale_offset_enbled) { + const auto x = static_cast<GLfloat>(regs.surface_clip.x); + const auto y = static_cast<GLfloat>(regs.surface_clip.y); + const auto width = static_cast<GLfloat>(regs.surface_clip.width); + const auto height = static_cast<GLfloat>(regs.surface_clip.height); glViewportIndexedf(static_cast<GLuint>(index), x, y, width != 0.0f ? width : 1.0f, height != 0.0f ? height : 1.0f); continue; |
