remove gl version check for vbo's

This commit is contained in:
Eric Wasylishen 2014-10-26 23:51:51 -06:00
parent d0c1e85375
commit a8c753a11f

View file

@ -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");