diff options
author | Dave Parks <davep@lindenlab.com> | 2012-06-20 18:29:18 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-06-20 18:29:18 -0500 |
commit | 7929db82d1d1db8d4ce7ecbd8436c51dea106f82 (patch) | |
tree | 4708ae96991d132921d6cb4802623c8e631ef01a /indra/newview/llviewertextureanim.h | |
parent | c030e3a51dac452936bc67690eedefe9fb5092d5 (diff) |
MAINT-794 Move flexi idleUpdate and texture animation to their own update queues.
Diffstat (limited to 'indra/newview/llviewertextureanim.h')
-rw-r--r-- | indra/newview/llviewertextureanim.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/newview/llviewertextureanim.h b/indra/newview/llviewertextureanim.h index dd7bd0cb90..abbfabceb9 100644 --- a/indra/newview/llviewertextureanim.h +++ b/indra/newview/llviewertextureanim.h @@ -30,10 +30,18 @@ #include "lltextureanim.h" #include "llframetimer.h" +class LLVOVolume; + class LLViewerTextureAnim : public LLTextureAnim { +private: + static std::vector<LLViewerTextureAnim*> sInstanceList; + S32 mInstanceIndex; + public: - LLViewerTextureAnim(); + static void updateClass(); + + LLViewerTextureAnim(LLVOVolume* vobj); virtual ~LLViewerTextureAnim(); /*virtual*/ void reset(); @@ -51,6 +59,7 @@ public: F32 mRot; protected: + LLVOVolume* mVObj; LLFrameTimer mTimer; F64 mLastTime; F32 mLastFrame; |