mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 13:04:35 +00:00
Wayland: Fix OSMesa library not being unloaded
(cherry picked from commit 2d281d7928
)
This commit is contained in:
parent
6d08e52bcf
commit
6dd9bf0bef
@ -141,6 +141,7 @@ information on what to include when reporting a bug.
|
|||||||
- [Wayland] Bugfix: Some errors would cause clipboard string transfer to hang
|
- [Wayland] Bugfix: Some errors would cause clipboard string transfer to hang
|
||||||
- [Wayland] Bugfix: Drag and drop data was misinterpreted as clipboard string
|
- [Wayland] Bugfix: Drag and drop data was misinterpreted as clipboard string
|
||||||
- [Wayland] Bugfix: MIME type matching was not performed for clipboard string
|
- [Wayland] Bugfix: MIME type matching was not performed for clipboard string
|
||||||
|
- [Wayland] Bugfix: The OSMesa library was not unloaded on termination
|
||||||
|
|
||||||
|
|
||||||
## Contact
|
## Contact
|
||||||
|
@ -484,6 +484,8 @@ void _glfwPlatformTerminate(void)
|
|||||||
_glfwTerminateJoysticksLinux();
|
_glfwTerminateJoysticksLinux();
|
||||||
#endif
|
#endif
|
||||||
_glfwTerminateEGL();
|
_glfwTerminateEGL();
|
||||||
|
_glfwTerminateOSMesa();
|
||||||
|
|
||||||
if (_glfw.wl.egl.handle)
|
if (_glfw.wl.egl.handle)
|
||||||
{
|
{
|
||||||
_glfw_dlclose(_glfw.wl.egl.handle);
|
_glfw_dlclose(_glfw.wl.egl.handle);
|
||||||
|
Loading…
Reference in New Issue
Block a user