Skip to content
Snippets Groups Projects
Commit 0c8164b8 authored by David Parks's avatar David Parks
Browse files

Fix for useVBOs being busted when sEnableVBOs gets flipped.

(transplanted from 19717602f45950c058c8ddce792d57ef21f67c99)
(transplanted from 11bf20602885c3d2d42d8a7f7361d2005a708b5c)
parent 866961d4
No related branches found
No related tags found
No related merge requests found
...@@ -813,7 +813,7 @@ BOOL LLVertexBuffer::useVBOs() const ...@@ -813,7 +813,7 @@ BOOL LLVertexBuffer::useVBOs() const
return FALSE; return FALSE;
} }
#endif #endif
return sEnableVBOs; return TRUE;
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
...@@ -1177,7 +1177,7 @@ void LLVertexBuffer::setBuffer(U32 data_mask) ...@@ -1177,7 +1177,7 @@ void LLVertexBuffer::setBuffer(U32 data_mask)
{ {
if (mGLBuffer) if (mGLBuffer)
{ {
if (sEnableVBOs && sVBOActive) if (useVBOs() && sVBOActive)
{ {
glBindBufferARB(GL_ARRAY_BUFFER_ARB, 0); glBindBufferARB(GL_ARRAY_BUFFER_ARB, 0);
sBindCount++; sBindCount++;
...@@ -1189,7 +1189,7 @@ void LLVertexBuffer::setBuffer(U32 data_mask) ...@@ -1189,7 +1189,7 @@ void LLVertexBuffer::setBuffer(U32 data_mask)
setup = TRUE; // ... or a client memory pointer changed setup = TRUE; // ... or a client memory pointer changed
} }
} }
if (sEnableVBOs && mGLIndices && sIBOActive) if (useVBOs() && mGLIndices && sIBOActive)
{ {
/*if (sMapped) /*if (sMapped)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment