diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-01-31 17:44:33 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-01-31 17:44:33 +0000 |
commit | aa7d5fd05d5f8bd589d7e7c5acbb81f5df438436 (patch) | |
tree | 5c1c49aa65a0bf18c690598e38dd356cbe2d7ea5 /code/sdl | |
parent | eee3dc4671e3517bc7dd539682a94432c2e1fe5d (diff) | |
download | ioquake3-aero-aa7d5fd05d5f8bd589d7e7c5acbb81f5df438436.tar.gz ioquake3-aero-aa7d5fd05d5f8bd589d7e7c5acbb81f5df438436.zip |
* Disabling r_allowSoftwareGL as per bug 3526
git-svn-id: svn://svn.icculus.org/quake3/trunk@1251 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/sdl')
-rw-r--r-- | code/sdl/sdl_glimp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/code/sdl/sdl_glimp.c b/code/sdl/sdl_glimp.c index eeba074..3f5ba12 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" ); |