summaryrefslogtreecommitdiff
path: root/indra/llrender
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
commit075b1af62aa104b888db10643463bfebb85b6080 (patch)
tree4c861f56c06d9ced61f48126bdc38aa7c0b88eed /indra/llrender
parent55694cb241a4970b4ba560eae5642314a1308d56 (diff)
STORM-1026 : Suppress trivial assert that makes Mac build fail (warning treated as error)
Diffstat (limited to 'indra/llrender')
-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 ;
}