diff options
author | Graham Linden <graham@lindenlab.com> | 2018-11-12 15:54:53 -0800 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2018-11-12 15:54:53 -0800 |
commit | a49e2b604e6b505e083e24b10e39053196d917c1 (patch) | |
tree | 931c403bcc66f9831b595b1aeb54534e5a5eff4a /indra/llrender | |
parent | bdf4442e216273bb32eeb607857efdad2336ee81 (diff) |
SL-10044 SL-10045
Fix class 1 and 2 transport/gamma funcs and made usage consistent across all shaders.
Fix class1\environment\waterV reverting to old d1/d2 names for wave directions.
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llglslshader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llglslshader.cpp b/indra/llrender/llglslshader.cpp index 585f8f6504..15a018a0bb 100644 --- a/indra/llrender/llglslshader.cpp +++ b/indra/llrender/llglslshader.cpp @@ -864,7 +864,7 @@ BOOL LLGLSLShader::link(BOOL suppress_errors) { BOOL success = LLShaderMgr::instance()->linkProgramObject(mProgramObject, suppress_errors); - if (!suppress_errors) + if (!success && !suppress_errors) { LLShaderMgr::instance()->dumpObjectLog(mProgramObject, !success, mName); } |