blob: 8b2dbf4353190a828a3b974ddf22d748e01f9ed8 (
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
|
/**
* @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
|