diff options
| -rw-r--r-- | demos/cube.c | 3 | ||||
| -rw-r--r-- | demos/cube.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/demos/cube.c b/demos/cube.c index ba6d53e5..a6d68a15 100644 --- a/demos/cube.c +++ b/demos/cube.c @@ -2395,7 +2395,6 @@ static void demo_cleanup(struct demo *demo) { demo->DestroyDebugReportCallback(demo->inst, demo->msg_callback, NULL); } vkDestroySurfaceKHR(demo->inst, demo->surface, NULL); - vkDestroyInstance(demo->inst, NULL); #if defined(VK_USE_PLATFORM_XLIB_KHR) XDestroyWindow(demo->display, demo->xlib_window); @@ -2413,6 +2412,8 @@ static void demo_cleanup(struct demo *demo) { wl_display_disconnect(demo->display); #elif defined(VK_USE_PLATFORM_MIR_KHR) #endif + + vkDestroyInstance(demo->inst, NULL); } static void demo_resize(struct demo *demo) { diff --git a/demos/cube.cpp b/demos/cube.cpp index b4fd7928..3ef4f4ea 100644 --- a/demos/cube.cpp +++ b/demos/cube.cpp @@ -382,7 +382,6 @@ struct Demo { device.waitIdle(); device.destroy(nullptr); inst.destroySurfaceKHR(surface, nullptr); - inst.destroy(nullptr); #if defined(VK_USE_PLATFORM_XLIB_KHR) XDestroyWindow(display, xlib_window); @@ -400,6 +399,8 @@ struct Demo { wl_display_disconnect(display); #elif defined(VK_USE_PLATFORM_MIR_KHR) #endif + + inst.destroy(nullptr); } void create_device() { |
