diff options
author | bunnei <bunneidev@gmail.com> | 2016-08-31 01:22:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-31 01:22:04 +0200 |
commit | 87893e6d68079ff4fa277688adb508d041944385 (patch) | |
tree | 66409921973ced922a27bda8ec47f4134fb94965 /src | |
parent | Merge pull request #2023 from yuriks/autobase-bcfnt (diff) | |
parent | OpenGL: Avoid error on unsupported lighting LUT (diff) | |
download | yuzu-87893e6d68079ff4fa277688adb508d041944385.tar yuzu-87893e6d68079ff4fa277688adb508d041944385.tar.gz yuzu-87893e6d68079ff4fa277688adb508d041944385.tar.bz2 yuzu-87893e6d68079ff4fa277688adb508d041944385.tar.lz yuzu-87893e6d68079ff4fa277688adb508d041944385.tar.xz yuzu-87893e6d68079ff4fa277688adb508d041944385.tar.zst yuzu-87893e6d68079ff4fa277688adb508d041944385.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_gen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_gen.cpp b/src/video_core/renderer_opengl/gl_shader_gen.cpp index 36513dedc..3de372f67 100644 --- a/src/video_core/renderer_opengl/gl_shader_gen.cpp +++ b/src/video_core/renderer_opengl/gl_shader_gen.cpp @@ -400,6 +400,7 @@ static void WriteLighting(std::string& out, const PicaShaderConfig& config) { default: LOG_CRITICAL(HW_GPU, "Unknown lighting LUT input %d\n", (int)input); UNIMPLEMENTED(); + index = "0.0"; break; } |