diff options
Diffstat (limited to 'demos/cube.cpp')
| -rw-r--r-- | demos/cube.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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() { |
