mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-12 23:44:21 +00:00
SDL_GL_SetSwapInterval() check
This commit is contained in:
parent
605dfabb94
commit
525eac0d99
1 changed files with 4 additions and 1 deletions
|
@ -476,7 +476,10 @@ static int GLimp_SetMode(int mode, qboolean fullscreen, qboolean noborder)
|
||||||
qglClear( GL_COLOR_BUFFER_BIT );
|
qglClear( GL_COLOR_BUFFER_BIT );
|
||||||
SDL_GL_SwapWindow( SDL_window );
|
SDL_GL_SwapWindow( SDL_window );
|
||||||
|
|
||||||
SDL_GL_SetSwapInterval( r_swapInterval->integer );
|
if( SDL_GL_SetSwapInterval( r_swapInterval->integer ) == -1 )
|
||||||
|
{
|
||||||
|
ri.Printf( PRINT_DEVELOPER, "SDL_GL_SetSwapInterval failed: %s\n", SDL_GetError( ) );
|
||||||
|
}
|
||||||
|
|
||||||
glConfig.colorBits = testColorBits;
|
glConfig.colorBits = testColorBits;
|
||||||
glConfig.depthBits = testDepthBits;
|
glConfig.depthBits = testDepthBits;
|
||||||
|
|
Loading…
Reference in a new issue