diff options
author | Merov Linden <merov@lindenlab.com> | 2013-10-16 16:00:08 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-10-16 16:00:08 -0700 |
commit | ee74eb1a9ee8e2aba49613cf434f1272a4526417 (patch) | |
tree | e01eac820836118756bd4146ddccf3a5f03881a9 /indra/llappearance | |
parent | 528f424952ea77945139279c7de4bb67880ce169 (diff) | |
parent | c7057c141c38492bfdc2bfe9d82de97a7364f01b (diff) |
Pull merge from lindenlab/viewer-release
Diffstat (limited to 'indra/llappearance')
-rw-r--r-- | indra/llappearance/lltexlayer.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llappearance/lltexlayer.cpp b/indra/llappearance/lltexlayer.cpp index f951a982e5..a3a8616864 100644 --- a/indra/llappearance/lltexlayer.cpp +++ b/indra/llappearance/lltexlayer.cpp @@ -1123,7 +1123,10 @@ BOOL LLTexLayer::render(S32 x, S32 y, S32 width, S32 height) // *TODO: Is this correct? //gPipeline.disableLights(); stop_glerror(); - glDisable(GL_LIGHTING); + if (!LLGLSLShader::sNoFixedFunction) + { + glDisable(GL_LIGHTING); + } stop_glerror(); bool use_shaders = LLGLSLShader::sNoFixedFunction; |