xo-imgui: + vulkan examples

This commit is contained in:
Roland Conybeare 2025-08-29 19:32:40 -04:00
commit fb7947a896
12 changed files with 5860 additions and 4 deletions

View file

@ -0,0 +1,19 @@
/* imgui_ex4.cpp */
#include "xo/imgui/VulkanApp.hpp"
#include <iostream>
int main() {
VulkanApp app;
try {
app.run();
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
/* end imgui_ex4.cpp */