The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

c/main: destroy all resources in comp_window_wayland

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2423>

authored by

Simon Zeni and committed by
Rylie Pavlik
fdf4986a 9cde4711

+9
+9
src/xrt/compositor/main/comp_window_wayland.c
··· 124 124 125 125 comp_target_swapchain_cleanup(&cww->base); 126 126 127 + if (cww->xdg_toplevel) { 128 + xdg_toplevel_destroy(cww->xdg_toplevel); 129 + } 130 + if (cww->xdg_surface) { 131 + xdg_surface_destroy(cww->xdg_surface); 132 + } 133 + if (cww->wm_base) { 134 + xdg_wm_base_destroy(cww->wm_base); 135 + } 127 136 if (cww->surface) { 128 137 wl_surface_destroy(cww->surface); 129 138 cww->surface = NULL;