diff options
Diffstat (limited to 'hk21/vulkan_loader/fns.hpp')
-rw-r--r-- | hk21/vulkan_loader/fns.hpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hk21/vulkan_loader/fns.hpp b/hk21/vulkan_loader/fns.hpp index ceb1105..09b6926 100644 --- a/hk21/vulkan_loader/fns.hpp +++ b/hk21/vulkan_loader/fns.hpp @@ -4,4 +4,13 @@ #define VULKAN_INSTANCE_FNS \
FN(vkDestroyInstance) \
- FN(vkDestroySurfaceKHR)
+ FN(vkDestroySurfaceKHR) \
+ FN(vkEnumeratePhysicalDevices) \
+ FN(vkGetPhysicalDeviceProperties) \
+ FN(vkGetPhysicalDeviceQueueFamilyProperties) \
+ FN(vkCreateDevice) \
+ FN(vkGetDeviceProcAddr)
+
+#define VULKAN_DEVICE_FNS \
+ FN(vkDestroyDevice) \
+ FN(vkGetDeviceQueue)
|