diff options
author | Dave Parks <davep@lindenlab.com> | 2012-03-14 16:13:23 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-03-14 16:13:23 -0500 |
commit | 3894701180e436f313afdb94ed9b5d95f15474ce (patch) | |
tree | bc628dd5cfff3b31fac2b0ae502a6ae08b73a42e /indra | |
parent | 76438e4a494c378fecd428599b0c195d3ce9d9b4 (diff) |
MAINT-708 Fix for pink when enabling RenderUseVAO
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llrender/llvertexbuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp index a5e2342367..b4899209c4 100644 --- a/indra/llrender/llvertexbuffer.cpp +++ b/indra/llrender/llvertexbuffer.cpp @@ -357,7 +357,7 @@ S32 LLVertexBuffer::sTypeSize[LLVertexBuffer::TYPE_MAX] = sizeof(F32), // TYPE_WEIGHT, sizeof(LLVector4), // TYPE_WEIGHT4, sizeof(LLVector4), // TYPE_CLOTHWEIGHT, - sizeof(U32), // TYPE_TEXTURE_INDEX (actually exists as position.w), no extra data, but stride is 16 bytes + sizeof(LLVector4), // TYPE_TEXTURE_INDEX (actually exists as position.w), no extra data, but stride is 16 bytes }; U32 LLVertexBuffer::sGLMode[LLRender::NUM_MODES] = |