accidentally removed a bit of llvoavatar.h

This commit is contained in:
Hazim Gazov
2010-04-22 00:03:18 -03:00
parent a7463f4db5
commit a9803a0f96

View File

@@ -686,6 +686,7 @@ protected:
public:
static void updateFreezeCounter(S32 counter = 0 );
// <edit>
public:
//bool mNametagSaysIdle;
//bool mIdleForever;
//LLFrameTimer mIdleTimer;
@@ -693,7 +694,18 @@ public:
LLUUID mFocusObject;
LLVector3d mFocusVector;
//void resetIdleTime();
// </edit>
// </edit>
struct BakedTextureData
{
LLUUID mLastTextureIndex;
LLTexLayerSet* mTexLayerSet;
bool mIsLoaded;
bool mIsUsed;
LLVOAvatarDefines::ETextureIndex mTextureIndex;
U32 mMaskTexName;
// Stores pointers to the joint meshes that this baked texture deals with
std::vector< LLViewerJointMesh * > mMeshes; // std::vector<LLViewerJointMesh> mJoints[i]->mMeshParts
};
typedef std::vector<BakedTextureData> bakedtexturedata_vec_t;
bakedtexturedata_vec_t mBakedTextureData;