Initial commit
This commit is contained in:
18
application/source/examples/example.vulkan.c
Normal file
18
application/source/examples/example.vulkan.c
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
|
||||
#include "vulkan.h"
|
||||
volatile sig_atomic_t stop;
|
||||
|
||||
void inthand(int signum) {
|
||||
stop = 1;
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
||||
vulkan * instance = new vulkan();
|
||||
|
||||
instance->setup();
|
||||
|
||||
|
||||
return 1;
|
||||
}
|
||||
Reference in New Issue
Block a user