The open source OpenXR runtime

c/util: Log destroy and really_destroy as debug

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

authored by

Jakob Bornecrantz and committed by
Marge Bot
c25d7c18 67dc3556

+3 -1
+3 -1
src/xrt/compositor/util/comp_swapchain.c
··· 41 41 { 42 42 struct comp_swapchain *sc = comp_swapchain(xsc); 43 43 44 - VK_TRACE(sc->vk, "DESTROY"); 44 + VK_DEBUG(sc->vk, "%p DESTROY(not-actual)", (void *)sc); 45 45 46 46 u_threading_stack_push(&sc->cscs->destroy_swapchains, sc); 47 47 } ··· 476 476 static void 477 477 really_destroy(struct comp_swapchain *sc) 478 478 { 479 + VK_DEBUG(sc->vk, "%p REALLY_DESTROY", (void *)sc); 480 + 479 481 // Reuse close function. 480 482 comp_swapchain_teardown(sc); 481 483