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