diff options
| author | 2018-12-09 23:36:21 -0300 | |
|---|---|---|
| committer | 2018-12-09 23:36:21 -0300 | |
| commit | 430e1f864b97a77287885e23fba5d04c43c99e6f (patch) | |
| tree | 90cd0b84befeac8346203b44bb62ec8f3ebefbf7 /src | |
| parent | Merge pull request #1864 from lioncash/nrr (diff) | |
| download | yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar.gz yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.tar.xz yuzu-430e1f864b97a77287885e23fba5d04c43c99e6f.zip | |
gl_shader_decompiler: IPA FrontFacing: the right value when is the front face is 0xFFFFFFFF.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 2 |
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: | |||
| 928 | case Attribute::Index::FrontFacing: | 928 | case Attribute::Index::FrontFacing: |
| 929 | // TODO(Subv): Find out what the values are for the other elements. | 929 | // TODO(Subv): Find out what the values are for the other elements. |
| 930 | ASSERT(stage == Maxwell3D::Regs::ShaderStage::Fragment); | 930 | ASSERT(stage == Maxwell3D::Regs::ShaderStage::Fragment); |
| 931 | return "vec4(0, 0, 0, uintBitsToFloat(gl_FrontFacing ? 1 : 0))"; | 931 | return "vec4(0, 0, 0, intBitsToFloat(gl_FrontFacing ? -1 : 0))"; |
| 932 | default: | 932 | default: |
| 933 | const u32 index{static_cast<u32>(attribute) - | 933 | const u32 index{static_cast<u32>(attribute) - |
| 934 | static_cast<u32>(Attribute::Index::Attribute_0)}; | 934 | static_cast<u32>(Attribute::Index::Attribute_0)}; |