Test Vulkan code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
426 B

//#include <HelloTriangleApplication.h>
#include <VkMain.h>
1 month ago
#include <iostream>
#include <stdexcept>
#include <cstdlib>
int main(int /*argc*/, char */*argv*/[]) {
// HelloTriangleApplication app;
VkMain vkMain;
1 month ago
try {
// app.run();
vkMain.mainRun();
1 month ago
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}