diff options
author | Dave Parks <davep@lindenlab.com> | 2010-11-21 05:09:59 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-11-21 05:09:59 -0600 |
commit | 2915715ec4a9bb7978c4a0db0afc26b73ab8b2fb (patch) | |
tree | 1646677894d56b176a38fe21f75c48e1de9003c9 /indra/newview/llvoavatar.h | |
parent | 4b5ddf1c41622e48bff79eba3f9bc50e73a1efb6 (diff) |
Remove dependency on ll_align_malloc/free from avatar.
Diffstat (limited to 'indra/newview/llvoavatar.h')
-rw-r--r-- | indra/newview/llvoavatar.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index caf8091029..833c30d6db 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -198,6 +198,10 @@ public: public:
virtual bool isSelf() const { return false; } // True if this avatar is for this viewer's agent
bool isBuilt() const { return mIsBuilt; }
+
+private: //aligned members
+ LLVector4a mImpostorExtents[2];
+
private:
BOOL mSupportsAlphaLayers; // For backwards compatibility, TRUE for 1.23+ clients
@@ -425,7 +429,6 @@ private: LLVector3 mImpostorOffset;
LLVector2 mImpostorDim;
BOOL mNeedsAnimUpdate;
- LLVector4a* mImpostorExtents;
LLVector3 mImpostorAngle;
F32 mImpostorDistance;
F32 mImpostorPixelArea;
|