From 50783f1dbb9d2d7fad9b7c50a4fd7e2e603b79a3 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Thu, 31 Jan 2008 17:44:33 +0000 Subject: [PATCH] * Disabling r_allowSoftwareGL as per bug 3526 --- code/sdl/sdl_glimp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/sdl/sdl_glimp.c b/code/sdl/sdl_glimp.c index eeba0743..3f5ba12f 100644 --- a/code/sdl/sdl_glimp.c +++ b/code/sdl/sdl_glimp.c @@ -317,6 +317,7 @@ static int GLimp_SetMode( int mode, qboolean fullscreen ) SDL_GL_SetAttribute( SDL_GL_STENCIL_SIZE, tstencilbits ); SDL_GL_SetAttribute( SDL_GL_DOUBLEBUFFER, 1 ); +#if 0 // See http://bugzilla.icculus.org/show_bug.cgi?id=3526 // If not allowing software GL, demand accelerated if( !r_allowSoftwareGL->integer ) { @@ -326,6 +327,7 @@ static int GLimp_SetMode( int mode, qboolean fullscreen ) "visual with libSDL < 1.2.10\n" ); } } +#endif if( SDL_GL_SetAttribute( SDL_GL_SWAP_CONTROL, r_swapInterval->integer ) < 0 ) ri.Printf( PRINT_ALL, "r_swapInterval requires libSDL >= 1.2.10\n" );