mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2025-12-20 12:50:11 +01:00
clients/simple-egl: destroy tearing_manager on exit
Add missing tearing_manager destructor call. Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
This commit is contained in:
parent
4fa4665d7a
commit
ae47d27f06
1 changed files with 3 additions and 0 deletions
|
|
@ -1524,6 +1524,9 @@ out_no_xdg_shell:
|
||||||
if (display.compositor)
|
if (display.compositor)
|
||||||
wl_compositor_destroy(display.compositor);
|
wl_compositor_destroy(display.compositor);
|
||||||
|
|
||||||
|
if (display.tearing_manager)
|
||||||
|
wp_tearing_control_manager_v1_destroy(display.tearing_manager);
|
||||||
|
|
||||||
if (display.viewporter)
|
if (display.viewporter)
|
||||||
wp_viewporter_destroy(display.viewporter);
|
wp_viewporter_destroy(display.viewporter);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue