diff options
Diffstat (limited to 'indra/newview/llhudobject.h')
-rw-r--r-- | indra/newview/llhudobject.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/indra/newview/llhudobject.h b/indra/newview/llhudobject.h index ff70b6a52f..2f7a98c86c 100644 --- a/indra/newview/llhudobject.h +++ b/indra/newview/llhudobject.h @@ -36,7 +36,7 @@ #include "v4color.h" #include "v3math.h" #include "v3dmath.h" -#include "lldrawpool.h" +#include "lldrawpool.h" // TODO: eliminate, unused below #include <list> class LLViewerCamera; @@ -69,6 +69,10 @@ public: static void updateAll(); static void renderAll(); static void renderAllForSelect(); + static void renderAllForTimer(); + + // Some objects may need to update when window shape changes + static void reshapeAll(); static void cleanupHUDObjects(); @@ -90,7 +94,9 @@ public: LL_HUD_EFFECT_EDIT, LL_HUD_EFFECT_LOOKAT, LL_HUD_EFFECT_POINTAT, - LL_HUD_EFFECT_VOICE_VISUALIZER // Ventrella + LL_HUD_EFFECT_VOICE_VISUALIZER, // Ventrella + LL_HUD_NAME_TAG, + LL_HUD_EFFECT_BLOB }; protected: static void sortObjects(); @@ -99,14 +105,13 @@ protected: ~LLHUDObject(); virtual void render() = 0; - virtual void renderForSelect() {}; + virtual void renderForTimer() {}; protected: U8 mType; BOOL mDead; BOOL mVisible; LLVector3d mPositionGlobal; - BOOL mOnHUDAttachment; LLPointer<LLViewerObject> mSourceObject; LLPointer<LLViewerObject> mTargetObject; |