diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2022-11-17 15:04:38 +0200 |
---|---|---|
committer | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2022-11-17 15:04:38 +0200 |
commit | 0ee82f5264067e22013c49abf19344172c2f658b (patch) | |
tree | 24071cb8fda40782817f49c3d4812da83d84d3b9 /indra/newview/llvoavatar.h | |
parent | 72b1cfc76b6deda8771935b086f040b887ffe804 (diff) |
SL-18641 fix for 'Always display friends in full detail' setting
Diffstat (limited to 'indra/newview/llvoavatar.h')
-rw-r--r-- | indra/newview/llvoavatar.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index a27327d8a3..3429f47dc9 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -354,12 +354,10 @@ public: // check and return current state relative to limits // default will test only the geometry (combined=false). // this allows us to disable shadows separately on complex avatars. - inline bool isTooSlowWithShadows() const {return mTooSlow;}; + inline bool isTooSlowWithoutShadows() const {return mTooSlowWithoutShadows;}; - inline bool isTooSlow(bool combined = false) const - { - return(combined?mTooSlow:mTooSlowWithoutShadows); - } + bool isTooSlow() const; + void updateTooSlow(); bool isTooComplex() const; |