Browse Source

platform/sdl: fix safegl

pull/2/head
mittorn 9 months ago committed by Alibek Omarov
parent
commit
6041bb0a43
  1. 9
      engine/platform/sdl/vid_sdl.c

9
engine/platform/sdl/vid_sdl.c

@ -812,8 +812,13 @@ qboolean VID_CreateWindow( int width, int height, window_mode_t window_mode ) @@ -812,8 +812,13 @@ qboolean VID_CreateWindow( int width, int height, window_mode_t window_mode )
{
if( !glw_state.initialized )
{
if( !GL_CreateContext( ))
return false;
while( !GL_CreateContext( ))
{
glw_state.safe++;
if(glw_state.safe > SAFE_DONTCARE)
return false;
GL_SetupAttributes(); // re-choose attributes
}
VID_StartupGamma();
}

Loading…
Cancel
Save