Pārlūkot izejas kodu

get the splash screen on linux to stop corrupting the main window

AzaezelX 4 gadi atpakaļ
vecāks
revīzija
431fb05b6f
1 mainītis faili ar 7 papildinājumiem un 0 dzēšanām
  1. 7 0
      Engine/source/windowManager/sdl/sdlSplashScreen.cpp

+ 7 - 0
Engine/source/windowManager/sdl/sdlSplashScreen.cpp

@@ -96,6 +96,13 @@ bool Platform::displaySplashWindow( String path )
       SDL_RenderCopy(gSplashRenderer, gSplashTexture, NULL, NULL);
 
       SDL_RenderPresent(gSplashRenderer);
+
+      SDL_DestroyTexture(gSplashTexture);
+      gSplashTexture = nullptr;
+
+      SDL_DestroyRenderer(gSplashRenderer);
+      gSplashRenderer = nullptr;
+
    }
 
    return true;