ref_gl: force gles2 on non-nanogl until we support gles1 directly

This commit is contained in:
mittorn 2023-10-25 22:21:18 +03:00 committed by Alibek Omarov
parent a982562658
commit 6bc613bdb4
1 changed files with 1 additions and 1 deletions

View File

@ -1378,7 +1378,7 @@ void GL_SetupAttributes( int safegl )
#ifdef XASH_NANOGL
gEngfuncs.GL_SetAttribute( REF_GL_CONTEXT_MAJOR_VERSION, 1 );
gEngfuncs.GL_SetAttribute( REF_GL_CONTEXT_MINOR_VERSION, 1 );
#elif defined( XASH_WES ) || defined( XASH_REGAL )
#else
gEngfuncs.GL_SetAttribute( REF_GL_CONTEXT_MAJOR_VERSION, 2 );
gEngfuncs.GL_SetAttribute( REF_GL_CONTEXT_MINOR_VERSION, 0 );
#endif