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.
36 lines
803 B
36 lines
803 B
#define STB_IMAGE_IMPLEMENTATION
|
|
#define TINYOBJLOADER_IMPLEMENTATION
|
|
|
|
//#include "VulkanTutorial1.0/HelloTriangleApplication.h"
|
|
#include "VulkanTutorial1.0/ComputeAndGraphics.h"
|
|
//#include <VkMain.h>
|
|
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
#include <cstdlib>
|
|
|
|
#include<QGuiApplication>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
// HelloTriangleApplication vulkanApp;
|
|
ComputeAndGraphics vulkanApp;
|
|
VulkanWindow* window = new VulkanWindow();
|
|
vulkanApp.initWindow(window);
|
|
// VkMain vkMain;
|
|
|
|
try {
|
|
window->show();
|
|
vulkanApp.run();
|
|
|
|
// vkMain.mainRun();
|
|
} catch (const std::exception& e) {
|
|
std::cerr << e.what() << std::endl;
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
// return EXIT_SUCCESS;
|
|
return app.exec();
|
|
}
|
|
|