diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-03 23:36:28 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-03 23:36:28 +0300 |
commit | b8a7c66bc15539db4a03ffe65076fdbbbce2b36d (patch) | |
tree | aa264365f8021cf6ac8dd7d0b4e1f8fd2b9d1c49 | |
parent | 28208f688490e712b33883c488cd9deba8a3c308 (diff) |
SL-863 Fixed missing render mask
-rw-r--r-- | indra/newview/pipeline.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 7cd0b77af4..f3b8ad9008 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -10916,7 +10916,9 @@ void LLPipeline::generateImpostor(LLVOAvatar* avatar) if (visually_muted || too_complex) { - andRenderTypeMask(LLPipeline::RENDER_TYPE_AVATAR, END_RENDER_TYPES); + andRenderTypeMask(LLPipeline::RENDER_TYPE_AVATAR, + LLPipeline::RENDER_TYPE_CONTROL_AV, + END_RENDER_TYPES); } else { |