aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lldrawpooltreenew.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/lldrawpooltreenew.h')
-rw-r--r--linden/indra/newview/lldrawpooltreenew.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/linden/indra/newview/lldrawpooltreenew.h b/linden/indra/newview/lldrawpooltreenew.h
deleted file mode 100644
index 9150331..0000000
--- a/linden/indra/newview/lldrawpooltreenew.h
+++ /dev/null
@@ -1,55 +0,0 @@
1/**
2 * @file lldrawpooltreenew.h
3 * @brief LLDrawPoolTreeNew class definition
4 *
5 * Copyright (c) 2003-2007, Linden Research, Inc.
6 *
7 * The source code in this file ("Source Code") is provided by Linden Lab
8 * to you under the terms of the GNU General Public License, version 2.0
9 * ("GPL"), unless you have obtained a separate licensing agreement
10 * ("Other License"), formally executed by you and Linden Lab. Terms of
11 * the GPL can be found in doc/GPL-license.txt in this distribution, or
12 * online at http://secondlife.com/developers/opensource/gplv2
13 *
14 * There are special exceptions to the terms and conditions of the GPL as
15 * it is applied to this Source Code. View the full text of the exception
16 * in the file doc/FLOSS-exception.txt in this software distribution, or
17 * online at http://secondlife.com/developers/opensource/flossexception
18 *
19 * By copying, modifying or distributing this software, you acknowledge
20 * that you have read and understood your obligations described above,
21 * and agree to abide by those obligations.
22 *
23 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
24 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
25 * COMPLETENESS OR PERFORMANCE.
26 */
27
28#ifndef LL_LLDRAWPOOLTREENEW_H
29#define LL_LLDRAWPOOLTREENEW_H
30
31#include "lldrawpool.h"
32
33class LLDrawPoolTreeNew : public LLDrawPool
34{
35 LLPointer<LLViewerImage> mTexturep;
36public:
37 LLDrawPoolTreeNew(LLViewerImage *texturep);
38
39 /*virtual*/ LLDrawPool *instancePool();
40
41 /*virtual*/ void prerender();
42 /*virtual*/ void render( S32 pass );
43 /*virtual*/ void renderForSelect();
44 /*virtual*/ S32 rebuild();
45 /*virtual*/ BOOL verify() const;
46 /*virtual*/ LLViewerImage *getTexture();
47 /*virtual*/ LLViewerImage *getDebugTexture();
48 /*virtual*/ LLColor3 getDebugColor() const; // For AGP debug display
49 virtual S32 getMaterialAttribIndex() { return 0; }
50
51private:
52 void renderTree(BOOL selecting = FALSE);
53};
54
55#endif // LL_LLDRAWPOOLTREE_H