diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2018-12-16 13:51:52 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2018-12-16 13:51:52 -0500 |
commit | 11f23ca436d65c4a896be8718b2fb5dae1e5c314 (patch) | |
tree | 2495ddf1fd00e936861d5ae18b3da4aeea862605 /indra/newview/pipeline.cpp | |
parent | 4a136572857fcf5d5fd21789a777bbde67c1076d (diff) | |
parent | f5f504b0f946582efc85b0e76f38e9242aed11bb (diff) |
Automated merge with ssh://bitbucket.org/lindenlab/viewer-bugsplat
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index e7f50f6b59..40d6d325ba 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -8678,7 +8678,8 @@ void LLPipeline::renderDeferredLighting() } const LLViewerObject *vobj = drawablep->getVObj(); - if(vobj && vobj->getAvatar() && vobj->getAvatar()->isInMuteList()) + if(vobj && vobj->getAvatar() + && (vobj->getAvatar()->isTooComplex() || vobj->getAvatar()->isInMuteList())) { continue; } |