diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-12-21 15:35:51 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-11-04 13:27:46 +0800 |
commit | 07df1ac59eca083ca01e230b629d4d67085114bc (patch) | |
tree | 02c39abf0b808db342cad1b4740040ee67867f60 /indra/llwindow | |
parent | 6fa1d6ae41f804cf262da00949ae7978dc3020bc (diff) |
Force the GL profile to be the core one
on all platforms, not only on Darwin.
Diffstat (limited to 'indra/llwindow')
-rw-r--r-- | indra/llwindow/llwindowsdl.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index 8fddbf05e2..ddd502e618 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -373,6 +373,14 @@ bool LLWindowSDL::createContext(int x, int y, int width, int height, int bits, b SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, depthBits); SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, stencilBits); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4); +#if LL_DARWIN + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1); +#else + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 6); +#endif + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); + SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); U32 context_flags = 0; |