summaryrefslogtreecommitdiff
path: root/indra/llrender/llvertexbuffer.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2011-03-08 17:00:39 -0800
committerMerov Linden <merov@lindenlab.com>2011-03-08 17:00:39 -0800
commit76a325b83271424d231561d8ef099df1406c9517 (patch)
tree6ce02979052c9484a370c9285838a3c604b45626 /indra/llrender/llvertexbuffer.cpp
parent409cc0cf9328e08d99f08bd44fcd7ba3a5ee5a59 (diff)
STORM-1026 : Suppress trivial assert that makes Mac build fail (warning treated as error)
Diffstat (limited to 'indra/llrender/llvertexbuffer.cpp')
-rw-r--r--indra/llrender/llvertexbuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp
index b515e4fcab..1beb74eca6 100644
--- a/indra/llrender/llvertexbuffer.cpp
+++ b/indra/llrender/llvertexbuffer.cpp
@@ -313,7 +313,7 @@ void LLVertexBuffer::initClass(bool use_vbo, bool no_vbo_mapping)
sEnableVBOs = use_vbo && gGLManager.mHasVertexBufferObject ;
if(sEnableVBOs)
{
- llassert_always(glBindBufferARB) ; //double check the extention for VBO is loaded.
+ //llassert_always(glBindBufferARB) ; //double check the extention for VBO is loaded.
llinfos << "VBO is enabled." << llendl ;
}