mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-16 06:00:33 +01:00
ref: move GLES driver hint to SetAttribute as we don't choose GLES renderer in compile-time anymore
This commit is contained in:
parent
84761e62ff
commit
a9cf3357c7
@ -819,9 +819,6 @@ void Host_InitCommon( int argc, char **argv, const char *progname, qboolean bCha
|
|||||||
host.type = HOST_DEDICATED;
|
host.type = HOST_DEDICATED;
|
||||||
}
|
}
|
||||||
SDL_SetHint(SDL_HINT_ACCELEROMETER_AS_JOYSTICK, "0");
|
SDL_SetHint(SDL_HINT_ACCELEROMETER_AS_JOYSTICK, "0");
|
||||||
#if defined XASH_GLES && !defined __EMSCRIPTEN__ && !TARGET_OS_IOS
|
|
||||||
SDL_SetHint( SDL_HINT_OPENGL_ES_DRIVER, "1" );
|
|
||||||
#endif
|
|
||||||
|
|
||||||
SDL_StopTextInput();
|
SDL_StopTextInput();
|
||||||
#endif
|
#endif
|
||||||
|
@ -501,6 +501,16 @@ void GL_SwapBuffers()
|
|||||||
|
|
||||||
int GL_SetAttribute( int attr, int val )
|
int GL_SetAttribute( int attr, int val )
|
||||||
{
|
{
|
||||||
|
switch( attr )
|
||||||
|
{
|
||||||
|
case REF_GL_CONTEXT_PROFILE_MASK:
|
||||||
|
if( val == REF_GL_CONTEXT_PROFILE_ES )
|
||||||
|
SDL_SetHint( SDL_HINT_OPENGL_ES_DRIVER, "1" );
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
return SDL_GL_SetAttribute( (SDL_GLattr)attr, val );
|
return SDL_GL_SetAttribute( (SDL_GLattr)attr, val );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user