From 0ca7667fd27f4e2e05bb14eb98135e72d07ab9c1 Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Sun, 11 May 2014 12:28:29 +0200 Subject: [PATCH] Removed glewExperimental = GL_TRUE hack for SDL 2 --- neo/sys/sdl/sdl_glimp.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/neo/sys/sdl/sdl_glimp.cpp b/neo/sys/sdl/sdl_glimp.cpp index 306f7659..89faa88c 100644 --- a/neo/sys/sdl/sdl_glimp.cpp +++ b/neo/sys/sdl/sdl_glimp.cpp @@ -303,14 +303,6 @@ bool GLimp_Init( glimpParms_t parms ) return false; } - // RB: use glewExperimental to avoid issues with OpenGL 3.x core profiles -#if SDL_VERSION_ATLEAST(2, 0, 0) - if( r_useOpenGL32.GetInteger() > 1 ) - { - glewExperimental = GL_TRUE; - } -#endif - GLenum glewResult = glewInit(); if( GLEW_OK != glewResult ) {