Skip to content
Snippets Groups Projects
Commit 2378455f authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Cleanup/fix SDL2 shutdown

parent f01688fe
No related branches found
No related tags found
No related merge requests found
...@@ -669,6 +669,7 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B ...@@ -669,6 +669,7 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B
LL_WARNS() << "OpenGL context creation failure. SDL: " << SDL_GetError() << LL_ENDL; LL_WARNS() << "OpenGL context creation failure. SDL: " << SDL_GetError() << LL_ENDL;
setupFailure("Context creation error", "Error", OSMB_OK); setupFailure("Context creation error", "Error", OSMB_OK);
SDL_DestroyWindow(mWindow); SDL_DestroyWindow(mWindow);
mWindow = nullptr;
return FALSE; return FALSE;
} }
if (SDL_GL_MakeCurrent(mWindow, mGLContext) != 0) if (SDL_GL_MakeCurrent(mWindow, mGLContext) != 0)
...@@ -845,12 +846,20 @@ void LLWindowSDL::destroyContext() ...@@ -845,12 +846,20 @@ void LLWindowSDL::destroyContext()
LL_INFOS() << "shutdownGL begins" << LL_ENDL; LL_INFOS() << "shutdownGL begins" << LL_ENDL;
gGLManager.shutdownGL(); gGLManager.shutdownGL();
mWindow = NULL; LL_INFOS() << "Destroying SDL cursors" << LL_ENDL;
quitCursors();
LL_INFOS() << "Destroying GL Context" << LL_ENDL;
SDL_GL_DeleteContext(mGLContext);
mGLContext = nullptr;
LL_INFOS() << "Destroying SDL Window" << LL_ENDL;
SDL_DestroyWindow(mWindow);
mWindow = nullptr;
} }
LLWindowSDL::~LLWindowSDL() LLWindowSDL::~LLWindowSDL()
{ {
quitCursors();
destroyContext(); destroyContext();
if(mSupportedResolutions != NULL) if(mSupportedResolutions != NULL)
...@@ -907,7 +916,6 @@ void LLWindowSDL::close() ...@@ -907,7 +916,6 @@ void LLWindowSDL::close()
setMouseClipping(FALSE); setMouseClipping(FALSE);
showCursor(); showCursor();
quitCursors();
destroyContext(); destroyContext();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment