diff options
-rw-r--r-- | indra/llmath/llrigginginfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llmath/llrigginginfo.h b/indra/llmath/llrigginginfo.h index 18da905abb..7b36880a39 100644 --- a/indra/llmath/llrigginginfo.h +++ b/indra/llmath/llrigginginfo.h @@ -30,8 +30,11 @@ #ifndef LL_LLRIGGINGINFO_H #define LL_LLRIGGINGINFO_H +#include "llvector4a.h" + // Extents are in joint space // isRiggedTo is based on the state of all currently associated rigged meshes +LL_ALIGN_PREFIX(16) class LLJointRiggingInfo { public: @@ -44,7 +47,7 @@ public: private: LL_ALIGN_16(LLVector4a mRiggedExtents[2]); bool mIsRiggedTo; -}; +} LL_ALIGN_POSTFIX(16); // For storing all the rigging info associated with a given avatar or // object, keyed by joint_num. |