mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-03-12 22:03:49 +00:00
remove gl version check for vbo's
This commit is contained in:
parent
d0c1e85375
commit
a8c753a11f
1 changed files with 0 additions and 2 deletions
|
@ -813,8 +813,6 @@ static void GL_CheckExtensions (void)
|
|||
//
|
||||
if (COM_CheckParm("-novbo"))
|
||||
Con_Warning ("Vertex buffer objects disabled at command line\n");
|
||||
else if (gl_version_major < 1 || (gl_version_major == 1 && gl_version_minor < 5))
|
||||
Con_Warning ("OpenGL version < 1.5, skipping ARB_vertex_buffer_object check\n");
|
||||
else
|
||||
{
|
||||
GL_BindBufferFunc = (PFNGLBINDBUFFERARBPROC) SDL_GL_GetProcAddress("glBindBufferARB");
|
||||
|
|
Loading…
Reference in a new issue