mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-13 07:21:31 +00:00
don't skip vbo check
This commit is contained in:
parent
9a0d529195
commit
16b8e4f259
1 changed files with 2 additions and 2 deletions
|
@ -841,8 +841,8 @@ 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 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