xo-imgui: refactor: separate VulkanApp TU for ex4a

This commit is contained in:
Roland Conybeare 2025-11-10 18:17:20 -05:00
commit adb4faf58e
4 changed files with 703 additions and 688 deletions

View file

@ -0,0 +1,14 @@
/* VulkanApp.cpp */
#include "VulkanApp.hpp"
void MinimalImGuiVulkan::run()
{
this->initWindow();
this->initVulkan();
this->initImGui();
this->mainLoop();
this->cleanup();
}
/* end VulkanApp.cpp */