diff options
author | Dave Parks <davep@lindenlab.com> | 2021-10-26 14:07:00 +0000 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2021-10-26 14:07:00 +0000 |
commit | 4e8cd9437bed90b3468b1bf12f545de16faefb67 (patch) | |
tree | 97456f016e716ad0c9ebd9011299952c12cdeb5f /indra/llrender/llvertexbuffer.h | |
parent | 081ae57831b40d46acfe8f70e727ab804597ae58 (diff) |
SL-16193 Fix for mesh selection outline not rendering correctly (and broken physics shapes display).
Diffstat (limited to 'indra/llrender/llvertexbuffer.h')
-rw-r--r-- | indra/llrender/llvertexbuffer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llrender/llvertexbuffer.h b/indra/llrender/llvertexbuffer.h index 51ed85510e..fad474a143 100644 --- a/indra/llrender/llvertexbuffer.h +++ b/indra/llrender/llvertexbuffer.h @@ -146,8 +146,7 @@ public: static void initClass(bool use_vbo, bool no_vbo_mapping); static void cleanupClass(); static void setupClientArrays(U32 data_mask); - static void pushPositions(U32 mode, const LLVector4a* pos, U32 count); - static void drawArrays(U32 mode, const std::vector<LLVector3>& pos, const std::vector<LLVector3>& norm); + static void drawArrays(U32 mode, const std::vector<LLVector3>& pos); static void drawElements(U32 mode, const LLVector4a* pos, const LLVector2* tc, S32 num_indices, const U16* indicesp); static void unbind(); //unbind any bound vertex buffer |