Merge commit '82ff6045fa0aa7ff2f861f20512e30688c7b51c3' into main

This commit is contained in:
Sam Lantinga 2021-03-22 19:16:25 -07:00
commit 3ee89ac02e
1 changed files with 12 additions and 8 deletions

View File

@ -1087,6 +1087,9 @@ KMSDRM_DestroyWindow(_THIS, SDL_Window *window)
/* Destroy GBM surface and buffers. */
KMSDRM_DestroySurfaces(_this, window);
/* Unload library and deinit GBM, but only if this is the last remaining window.*/
if (viddata->num_windows < 2) {
/* Unload EGL/GL library and free egl_data. */
if (_this->egl_data) {
SDL_EGL_UnloadLibrary(_this);
@ -1095,6 +1098,7 @@ KMSDRM_DestroyWindow(_THIS, SDL_Window *window)
/* Free display plane, and destroy GBM device. */
KMSDRM_GBMDeinit(_this, dispdata);
}
} else {