summaryrefslogtreecommitdiff
path: root/indra/newview/lldrawpooltree.h
blob: 228b11a981e4f2ce911b183bce42643dbef924da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/** 
 * @file lldrawpooltree.h
 * @brief LLDrawPoolTree class definition
 *
 * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

#ifndef LL_LLDRAWPOOLTREE_H
#define LL_LLDRAWPOOLTREE_H

#include "lldrawpool.h"

class LLDrawPoolTree : public LLDrawPool
{
	LLPointer<LLViewerImage> mTexturep;
public:
	LLDrawPoolTree(LLViewerImage *texturep);

	/*virtual*/ LLDrawPool *instancePool();

	/*virtual*/ void prerender();
	/*virtual*/ void beginRenderPass( S32 pass );
	/*virtual*/ void render(S32 pass = 0);
	/*virtual*/ void endRenderPass( S32 pass );
	/*virtual*/ void renderForSelect();
	/*virtual*/ S32 rebuild();
	/*virtual*/ BOOL verify() const;
	/*virtual*/ LLViewerImage *getTexture();
	/*virtual*/ LLViewerImage *getDebugTexture();
	/*virtual*/ LLColor3 getDebugColor() const; // For AGP debug display

	virtual S32 getMaterialAttribIndex();

	static S32 sDiffTex;

private:
	void renderTree(BOOL selecting = FALSE);
};

#endif // LL_LLDRAWPOOLTREE_H