summaryrefslogtreecommitdiff
path: root/indra/newview/llvopartgroup.h
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2012-05-23 11:11:14 -0500
committerDave Parks <davep@lindenlab.com>2012-05-23 11:11:14 -0500
commitcea270c50aee7651c1746177f1121e8d25eb8569 (patch)
treeaa197c3e2b45c82eefd0e1efe1fbb8eb85637c94 /indra/newview/llvopartgroup.h
parent42cdb4a4b29535b8580a7e532eb5262080239d28 (diff)
MAINT-616 Fix for particles not rendering.
Diffstat (limited to 'indra/newview/llvopartgroup.h')
-rw-r--r--indra/newview/llvopartgroup.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/newview/llvopartgroup.h b/indra/newview/llvopartgroup.h
index dde0b0476d..6160bceb24 100644
--- a/indra/newview/llvopartgroup.h
+++ b/indra/newview/llvopartgroup.h
@@ -52,10 +52,11 @@ public:
enum
{
- VERTEX_DATA_MASK = (1 << LLVertexBuffer::TYPE_VERTEX) |
- (1 << LLVertexBuffer::TYPE_NORMAL) |
- (1 << LLVertexBuffer::TYPE_TEXCOORD0) |
- (1 << LLVertexBuffer::TYPE_COLOR)
+ VERTEX_DATA_MASK = LLVertexBuffer::MAP_VERTEX |
+ LLVertexBuffer::MAP_NORMAL |
+ LLVertexBuffer::MAP_TEXCOORD0 |
+ LLVertexBuffer::MAP_COLOR |
+ LLVertexBuffer::MAP_TEXTURE_INDEX
};
LLVOPartGroup(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp);