summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.h
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2016-03-01 16:01:21 -0500
committerOz Linden <oz@lindenlab.com>2016-03-01 16:01:21 -0500
commitca7631e4d71c693a5a502c05a482ab01ada7888a (patch)
treebe01ebebc640a8cae69bf19a49f717fdd45721d1 /indra/newview/llvoavatar.h
parent9d681027b343a68a4e1151855145b79b95717d57 (diff)
MAINT-6183: Remove geometry bytes as a trigger for muted/impostor rendering
Diffstat (limited to 'indra/newview/llvoavatar.h')
-rwxr-xr-xindra/newview/llvoavatar.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h
index 10d10b2ed5..418cca519d 100755
--- a/indra/newview/llvoavatar.h
+++ b/indra/newview/llvoavatar.h
@@ -259,10 +259,9 @@ public:
void updateVisualComplexity();
U32 getVisualComplexity() { return mVisualComplexity; }; // Numbers calculated here by rendering AV
- S32 getAttachmentGeometryBytes() { return mAttachmentGeometryBytes; }; // number of bytes in attached geometry
F32 getAttachmentSurfaceArea() { return mAttachmentSurfaceArea; }; // estimated surface area of attachments
- void addAttachmentSizes(U32 delta_bytes, F32 delta_area);
- void subtractAttachmentSizes(U32 delta_bytes, F32 delta_area);
+ void addAttachmentArea(F32 delta_area);
+ void subtractAttachmentArea(F32 delta_area);
U32 getReportedVisualComplexity() { return mReportedVisualComplexity; }; // Numbers as reported by the SL server
void setReportedVisualComplexity(U32 value) { mReportedVisualComplexity = value; };
@@ -412,7 +411,6 @@ public:
S32 mSpecialRenderMode; // special lighting
private:
- S32 mAttachmentGeometryBytes; //number of bytes in attached geometry
F32 mAttachmentSurfaceArea; //estimated surface area of attachments
bool shouldAlphaMask();