Skip to content

Commit e6f3983

Browse files
committed
Vulkan: Disable vbo model caching by default
1 parent f3ec6fc commit e6f3983

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codemp/rd-vulkan/tr_init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ void R_Register( void )
958958
ri.Cvar_CheckRange(r_nomip, 0, 1, qtrue);
959959
#ifdef USE_VBO
960960
r_vbo = ri.Cvar_Get("r_vbo", "0", CVAR_ARCHIVE | CVAR_LATCH, "Cache static world surfaces");
961-
r_vbo_models = ri.Cvar_Get("r_vbo_models", "1", CVAR_ARCHIVE | CVAR_LATCH, "Cache ghoul2 and md3 model surfaces");
961+
r_vbo_models = ri.Cvar_Get("r_vbo_models", "0", CVAR_ARCHIVE | CVAR_LATCH, "Cache ghoul2 and md3 model surfaces");
962962
#endif
963963
r_renderWidth = ri.Cvar_Get("r_renderWidth", "800", CVAR_ARCHIVE_ND | CVAR_LATCH, "");
964964
r_renderHeight = ri.Cvar_Get("r_renderHeight", "600", CVAR_ARCHIVE_ND | CVAR_LATCH, "");

0 commit comments

Comments
 (0)