summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.h
diff options
context:
space:
mode:
authorMaxim Nikolenko <maximnproductengine@lindenlab.com>2022-11-17 15:04:38 +0200
committerMaxim Nikolenko <maximnproductengine@lindenlab.com>2022-11-17 15:04:38 +0200
commit0ee82f5264067e22013c49abf19344172c2f658b (patch)
tree24071cb8fda40782817f49c3d4812da83d84d3b9 /indra/newview/llvoavatar.h
parent72b1cfc76b6deda8771935b086f040b887ffe804 (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.h8
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;