mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-08 13:21:51 +08:00
ref_gl: gl_rsurf.c: don't use asserts to prevent engine from stopping when vbo is disabled.
This commit is contained in:
committed by
Alibek Omarov
parent
63c4b2748c
commit
c158771f59
@@ -2697,7 +2697,9 @@ void R_DrawVBO( qboolean drawlightmap, qboolean drawtextures )
|
||||
if( !vbotex->vboarray )
|
||||
continue;
|
||||
|
||||
ASSERT( vbotex->vboarray == vbo );
|
||||
// ASSERT( vbotex->vboarray == vbo );
|
||||
if( vbotex->vboarray != vbo )
|
||||
continue;
|
||||
|
||||
if( vbotex->curindex || vbotex->dlightchain )
|
||||
{
|
||||
@@ -2855,7 +2857,7 @@ void R_DrawVBO( qboolean drawlightmap, qboolean drawtextures )
|
||||
if( !drawtextures || !drawlightmap )
|
||||
vbos.decaldata->lm[k] = NULL;
|
||||
}
|
||||
ASSERT( !vbo->next );
|
||||
// ASSERT( !vbo->next );
|
||||
|
||||
// restore states
|
||||
R_DisableDetail();
|
||||
|
||||
Reference in New Issue
Block a user