summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl
diff options
context:
space:
mode:
authorMarcos Vitali <marcosvitali@gmail.com>2018-12-10 03:36:21 +0100
committerMarcos Vitali <marcosvitali@gmail.com>2018-12-10 03:36:21 +0100
commit430e1f864b97a77287885e23fba5d04c43c99e6f (patch)
tree90cd0b84befeac8346203b44bb62ec8f3ebefbf7 /src/video_core/renderer_opengl
parentMerge pull request #1864 from lioncash/nrr (diff)
downloadyuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar
yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar.gz
yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar.bz2
yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar.lz
yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar.xz
yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar.zst
yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.zip
Diffstat (limited to 'src/video_core/renderer_opengl')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_decompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
index 4fc09cac6..851012da4 100644
--- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
+++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
@@ -928,7 +928,7 @@ private:
case Attribute::Index::FrontFacing:
// TODO(Subv): Find out what the values are for the other elements.
ASSERT(stage == Maxwell3D::Regs::ShaderStage::Fragment);
- return "vec4(0, 0, 0, uintBitsToFloat(gl_FrontFacing ? 1 : 0))";
+ return "vec4(0, 0, 0, intBitsToFloat(gl_FrontFacing ? -1 : 0))";
default:
const u32 index{static_cast<u32>(attribute) -
static_cast<u32>(Attribute::Index::Attribute_0)};