diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2016-11-09 14:20:46 +0200 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2016-11-09 14:20:46 +0200 |
commit | 5921cc9d8a3896af70836eb2dbc8c8085e13ee43 (patch) | |
tree | afe2d977eb512d8d1337ec48c0dcf96b4cc3271f /indra/newview/pipeline.cpp | |
parent | db69d6a49e23577b6d2c4297f49cebe468eed262 (diff) |
MAINT-6917 Setting one avatar to "Do not render" causes all avatars to become imposters
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index c6bbfb1c8f..70989bacff 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -11623,7 +11623,7 @@ void LLPipeline::generateImpostor(LLVOAvatar* avatar) avatar->setImpostorDim(tdim); - LLVOAvatar::sUseImpostors = true; // @TODO ??? + LLVOAvatar::sUseImpostors = (0 != LLVOAvatar::sMaxNonImpostors); sUseOcclusion = occlusion; sReflectionRender = FALSE; sImpostorRender = FALSE; |