19 lines
316 B
C++
19 lines
316 B
C++
#define DEBUG 1
|
|
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
|
|
#include "vulkan/vulkan_app.hpp"
|
|
|
|
int main(){
|
|
try{
|
|
vapp::Vulkan app;
|
|
app.run(1200, 900);
|
|
}
|
|
catch(const std::exception& e){
|
|
std::cerr << e.what() << std::endl;
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
} |