summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.h
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2015-08-26 12:07:16 -0400
committerOz Linden <oz@lindenlab.com>2015-08-26 12:07:16 -0400
commit712a4e70c81c1908e4e7668ff1695a9415ec4b71 (patch)
treeb5312334f90e4359dce19eb696954dbcca5f5fd6 /indra/newview/llvoavatar.h
parent206ef7a1562db19a4d8a41e55b7272c917f4b62c (diff)
refine fix for MAINT-5560 based on review feedback and to fix VS objection
Diffstat (limited to 'indra/newview/llvoavatar.h')
-rwxr-xr-xindra/newview/llvoavatar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h
index 5f690be4c5..fb19f4eb2e 100755
--- a/indra/newview/llvoavatar.h
+++ b/indra/newview/llvoavatar.h
@@ -258,9 +258,9 @@ public:
U32 getVisualComplexity() { return mVisualComplexity; }; // Numbers calculated here by rendering AV
S32 getAttachmentGeometryBytes() { return mAttachmentGeometryBytes; }; // number of bytes in attached geometry
- void modifyAttachmentGeometryBytes(S32 delta);
F32 getAttachmentSurfaceArea() { return mAttachmentSurfaceArea; }; // estimated surface area of attachments
- void modifyAttachmentSurfaceArea(F32 delta);
+ void addAttachmentSizes(U32 delta_bytes, F32 delta_area);
+ void subtractAttachmentSizes(U32 delta_bytes, F32 delta_area);
U32 getReportedVisualComplexity() { return mReportedVisualComplexity; }; // Numbers as reported by the SL server
void setReportedVisualComplexity(U32 value) { mReportedVisualComplexity = value; };