Skip to content
Snippets Groups Projects
Commit b269b531 authored by Brad Payne (Vir Linden)'s avatar Brad Payne (Vir Linden)
Browse files

SL-915 - alignment/optimization changes

parent 3fcf7a32
No related branches found
No related tags found
No related merge requests found
...@@ -30,8 +30,11 @@ ...@@ -30,8 +30,11 @@
#ifndef LL_LLRIGGINGINFO_H #ifndef LL_LLRIGGINGINFO_H
#define LL_LLRIGGINGINFO_H #define LL_LLRIGGINGINFO_H
#include "llvector4a.h"
// Extents are in joint space // Extents are in joint space
// isRiggedTo is based on the state of all currently associated rigged meshes // isRiggedTo is based on the state of all currently associated rigged meshes
LL_ALIGN_PREFIX(16)
class LLJointRiggingInfo class LLJointRiggingInfo
{ {
public: public:
...@@ -44,7 +47,7 @@ class LLJointRiggingInfo ...@@ -44,7 +47,7 @@ class LLJointRiggingInfo
private: private:
LL_ALIGN_16(LLVector4a mRiggedExtents[2]); LL_ALIGN_16(LLVector4a mRiggedExtents[2]);
bool mIsRiggedTo; bool mIsRiggedTo;
}; } LL_ALIGN_POSTFIX(16);
// For storing all the rigging info associated with a given avatar or // For storing all the rigging info associated with a given avatar or
// object, keyed by joint_num. // object, keyed by joint_num.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment