diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/lldrawpoolwater.h |
Print done when done.
Diffstat (limited to 'indra/newview/lldrawpoolwater.h')
-rw-r--r-- | indra/newview/lldrawpoolwater.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/indra/newview/lldrawpoolwater.h b/indra/newview/lldrawpoolwater.h new file mode 100644 index 0000000000..7e661b3718 --- /dev/null +++ b/indra/newview/lldrawpoolwater.h @@ -0,0 +1,57 @@ +/** + * @file lldrawpoolwater.h + * @brief LLDrawPoolWater class definition + * + * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLDRAWPOOLWATER_H +#define LL_LLDRAWPOOLWATER_H + +#include "lldrawpool.h" + + +class LLFace; +class LLHeavenBody; +class LLWaterSurface; + +class LLDrawPoolWater: public LLDrawPool +{ +protected: + LLPointer<LLViewerImage> mHBTex[2]; + LLPointer<LLViewerImage> mWaterImagep; + LLPointer<LLViewerImage> mWaterNormp; + + const LLWaterSurface *mWaterSurface; +public: + enum + { + SHADER_LEVEL_RIPPLE = 2, + }; + + LLDrawPoolWater(); + /*virtual*/ ~LLDrawPoolWater(); + + /*virtual*/ LLDrawPool *instancePool(); + static void restoreGL(); + + /*virtual*/ void render(S32 pass = 0); + /*virtual*/ void renderFaceSelected(LLFace *facep, LLImageGL *image, const LLColor4 &color, + const S32 index_offset = 0, const S32 index_count = 0); + /*virtual*/ void prerender(); + /*virtual*/ void renderForSelect(); + + /*virtual*/ LLViewerImage *getDebugTexture(); + /*virtual*/ LLColor3 getDebugColor() const; // For AGP debug display + + void renderReflection(const LLFace* face); + void shade(); + void renderShaderSimple(); + + virtual S32 getMaterialAttribIndex() { return 0; } +}; + +void cgErrorCallback(); + +#endif // LL_LLDRAWPOOLWATER_H |