#define STB_IMAGE_IMPLEMENTATION #define TINYOBJLOADER_IMPLEMENTATION //#include "VulkanTutorial1.0/HelloTriangleApplication.h" #include "VulkanTutorial1.0/ComputeAndGraphics.h" //#include #include #include #include int main(int /*argc*/, char */*argv*/[]) { // HelloTriangleApplication app; ComputeAndGraphics app; // VkMain vkMain; try { app.run(); // vkMain.mainRun(); } catch (const std::exception& e) { std::cerr << e.what() << std::endl; return EXIT_FAILURE; } return EXIT_SUCCESS; }