diff options
Diffstat (limited to 'indra/newview/lldrawpoolground.h')
-rw-r--r-- | indra/newview/lldrawpoolground.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/indra/newview/lldrawpoolground.h b/indra/newview/lldrawpoolground.h index 8b2dbf4353..3436b9aabd 100644 --- a/indra/newview/lldrawpoolground.h +++ b/indra/newview/lldrawpoolground.h @@ -12,9 +12,17 @@ #include "lldrawpool.h" -class LLDrawPoolGround : public LLDrawPool +class LLDrawPoolGround : public LLFacePool { public: + enum + { + VERTEX_DATA_MASK = LLVertexBuffer::MAP_VERTEX | + LLVertexBuffer::MAP_TEXCOORD + }; + + virtual U32 getVertexDataMask() { return VERTEX_DATA_MASK; } + LLDrawPoolGround(); /*virtual*/ LLDrawPool *instancePool(); |