projects
/
demo
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed diagram
[demo]
/
src
/
vulkan
/
vk.h
1
#ifndef VK_H_
2
#define VK_H_
3
4
#define GLFW_INCLUDE_VULKAN
5
#include <GLFW/glfw3.h>
6
7
bool init_vulkan();
8
void cleanup_vulkan();
9
GLFWwindow *create_vulkan_window();
10
void display_vulkan();
11
12
#endif // VK_H_