summaryrefslogtreecommitdiff
path: root/indra/newview/lldrawpoolground.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/lldrawpoolground.h
Print done when done.
Diffstat (limited to 'indra/newview/lldrawpoolground.h')
-rw-r--r--indra/newview/lldrawpoolground.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/indra/newview/lldrawpoolground.h b/indra/newview/lldrawpoolground.h
new file mode 100644
index 0000000000..8b2dbf4353
--- /dev/null
+++ b/indra/newview/lldrawpoolground.h
@@ -0,0 +1,28 @@
+/**
+ * @file lldrawpoolground.h
+ * @brief LLDrawPoolGround class definition
+ *
+ * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLDRAWPOOLGROUND_H
+#define LL_LLDRAWPOOLGROUND_H
+
+#include "lldrawpool.h"
+
+
+class LLDrawPoolGround : public LLDrawPool
+{
+public:
+ LLDrawPoolGround();
+
+ /*virtual*/ LLDrawPool *instancePool();
+ virtual S32 getMaterialAttribIndex() { return 0; }
+
+ /*virtual*/ void prerender();
+ /*virtual*/ void render(S32 pass = 0);
+ /*virtual*/ void renderForSelect();
+};
+
+#endif // LL_LLDRAWPOOLGROUND_H