mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-31 23:45:32 +00:00
Merge branch 'patch-2' into 'master'
Add support for OpenGLES 3.2 See merge request OpenMW/openmw!93
This commit is contained in:
commit
7941fd6780
1 changed files with 3 additions and 0 deletions
|
@ -99,6 +99,9 @@ void GraphicsWindowSDL2::init()
|
|||
if (ver && strcmp(ver, "2") == 0) {
|
||||
major = 2;
|
||||
minor = 0;
|
||||
} else if (ver && strcmp(ver, "3") == 0) {
|
||||
major = 3;
|
||||
minor = 2;
|
||||
}
|
||||
|
||||
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES);
|
||||
|
|
Loading…
Reference in a new issue