diff options
author | Dave Parks <davep@lindenlab.com> | 2013-10-10 13:56:06 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2013-10-10 13:56:06 -0500 |
commit | ff8b002c3b2bc68bdf4b88c1687a711d2d7c0ca6 (patch) | |
tree | 32397148f0966e461bdab303e41b196f1382f5c4 /indra/llrender/llglslshader.cpp | |
parent | ea1e1b0925b386cf83178539b8eae9e25c573548 (diff) |
Quite down log spam from loading shaders.
Up bone cap to 64 for rigged meshes.
Diffstat (limited to 'indra/llrender/llglslshader.cpp')
-rwxr-xr-x | indra/llrender/llglslshader.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/llrender/llglslshader.cpp b/indra/llrender/llglslshader.cpp index 35620bb656..1c50a51d02 100755 --- a/indra/llrender/llglslshader.cpp +++ b/indra/llrender/llglslshader.cpp @@ -717,7 +717,14 @@ BOOL LLGLSLShader::mapUniforms(const vector<LLStaticHashedString> * uniforms) BOOL LLGLSLShader::link(BOOL suppress_errors) { - return LLShaderMgr::instance()->linkProgramObject(mProgramObject, suppress_errors); + BOOL success = LLShaderMgr::instance()->linkProgramObject(mProgramObject, suppress_errors); + + if (!suppress_errors) + { + LLShaderMgr::instance()->dumpObjectLog(mProgramObject, !success, mName); + } + + return success; } void LLGLSLShader::bind() |