topaz/vk/vk.h

10 lines
148 B
C

#ifndef VK_H
#define VK_H
#include <vulkan/vulkan.h>
struct renderer_context {
VkInstance instance;
VkPhysicalDevice physical_device;
};
#endif