diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-01 00:05:19 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-01 00:05:28 +0100 |
commit | 093d424eb48b2fae917547b48deb2e0a45efbed3 (patch) | |
tree | 29e8e9a1a5f89e123f9eaa0709db8f1d4c382258 /hk21/vulkan_loader/fns.hpp | |
parent | 1f314a6087b276ad8b2680ecb18f43dfe77df595 (diff) |
Vulkan device creation
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)
|