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.

28 lines
597 B

#define STB_IMAGE_IMPLEMENTATION
#define TINYOBJLOADER_IMPLEMENTATION
//#include "VulkanTutorial1.0/HelloTriangleApplication.h"
#include "VulkanTutorial1.0/ComputeAndGraphics.h"
//#include <VkMain.h>
1 month ago
#include <iostream>
#include <stdexcept>
#include <cstdlib>
int main(int /*argc*/, char */*argv*/[]) {
// HelloTriangleApplication app;
ComputeAndGraphics 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;
}