diff options
author | Oz Linden <oz@lindenlab.com> | 2014-12-05 17:12:42 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-12-05 17:12:42 -0500 |
commit | bf2e3fca73b80afa10a1c913ba752fcaf79ccd19 (patch) | |
tree | 12a8ae6dd43c065b6ebc91f4b3ad1e29eade4c7f /indra/llrender/llvertexbuffer.cpp | |
parent | 44f5d7320952de2c4c7e1062b1c02c2f521400fa (diff) | |
parent | 6d48db868f7459fcf5f0e89d830a844e409d4163 (diff) |
merge changes for 3.7.22-release
Diffstat (limited to 'indra/llrender/llvertexbuffer.cpp')
-rwxr-xr-x | indra/llrender/llvertexbuffer.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp index d06564df36..0fae600a90 100755 --- a/indra/llrender/llvertexbuffer.cpp +++ b/indra/llrender/llvertexbuffer.cpp @@ -843,9 +843,11 @@ void LLVertexBuffer::drawArrays(U32 mode, U32 first, U32 count) const { LL_RECORD_BLOCK_TIME(FTM_GL_DRAW_ARRAYS); stop_glerror(); - LLGLSLShader::startProfile(); + LLGLSLShader::startProfile(); + stop_glerror(); glDrawArrays(sGLMode[mode], first, count); - LLGLSLShader::stopProfile(count, mode); + stop_glerror(); + LLGLSLShader::stopProfile(count, mode); } stop_glerror(); |