mirror of
https://github.com/glfw/glfw.git
synced 2025-04-13 08:43:01 +00:00
Fix invalid EGL display being terminated
This commit is contained in:
parent
20574fa81f
commit
c234a19423
1 changed files with 6 additions and 1 deletions
|
@ -269,9 +269,14 @@ GLFWbool _glfwInitEGL(void)
|
|||
//
|
||||
void _glfwTerminateEGL(void)
|
||||
{
|
||||
if (_glfw.egl.handle)
|
||||
if (_glfw.egl.display)
|
||||
{
|
||||
eglTerminate(_glfw.egl.display);
|
||||
_glfw.egl.display = EGL_NO_DISPLAY;
|
||||
}
|
||||
|
||||
if (_glfw.egl.handle)
|
||||
{
|
||||
_glfw_dlclose(_glfw.egl.handle);
|
||||
_glfw.egl.handle = NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue