summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-05-19 16:18:09 -0400
committerLoren Shih <seraph@lindenlab.com>2010-05-19 16:18:09 -0400
commita4c364561bfe92a0b1610a1a732de7489f54b06e (patch)
treebf8879484a1a11d9fd245efb201301c7c51baed6
parentd43ac77d1b6d1952fe3369079f6461b124466b38 (diff)
AVP-72 FIXED Debug settings for gathering Welcome Island Rez time statistics
Fix for scoping error leading to compile error.
-rw-r--r--indra/newview/llvoavatarself.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/indra/newview/llvoavatarself.h b/indra/newview/llvoavatarself.h
index 9dc38c953e..32a180be5d 100644
--- a/indra/newview/llvoavatarself.h
+++ b/indra/newview/llvoavatarself.h
@@ -337,6 +337,15 @@ public:
// Avatar Rez Metrics
//--------------------------------------------------------------------
public:
+ struct LLAvatarTexData
+ {
+ LLAvatarTexData(const LLUUID& id, LLVOAvatarDefines::ETextureIndex index) :
+ mAvatarID(id),
+ mIndex(index)
+ {}
+ LLUUID mAvatarID;
+ LLVOAvatarDefines::ETextureIndex mIndex;
+ };
void wearablesLoaded() { mTimeWearablesLoaded = mDebugSelfLoadTimer.getElapsedTimeF32(); }
void avatarVisible() { mTimeAvatarVisible = mDebugSelfLoadTimer.getElapsedTimeF32(); }
void outputRezDiagnostics() const;
@@ -352,16 +361,6 @@ private:
** **
*******************************************************************************/
-struct LLAvatarTexData
-{
- LLAvatarTexData(const LLUUID& id, LLVOAvatarDefines::ETextureIndex index) :
- mAvatarID(id),
- mIndex(index)
- {}
- LLUUID mAvatarID;
- LLVOAvatarDefines::ETextureIndex mIndex;
-};
-
};
extern LLVOAvatarSelf *gAgentAvatarp;