diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-02 23:57:56 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-02 23:57:56 +0100 |
commit | ef3bf642b5231e6622bf8efefae1c97efee809b6 (patch) | |
tree | 9fa3e31d1364453f1580e2f877a64793e38c73ff /hk21/vulkan_loader/fns.hpp | |
parent | 41336fb9d421868fcc1b56f39232a665cabd2ef7 (diff) |
Get a solid color on the window
Diffstat (limited to 'hk21/vulkan_loader/fns.hpp')
-rw-r--r-- | hk21/vulkan_loader/fns.hpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/hk21/vulkan_loader/fns.hpp b/hk21/vulkan_loader/fns.hpp index 9994adb..8c45815 100644 --- a/hk21/vulkan_loader/fns.hpp +++ b/hk21/vulkan_loader/fns.hpp @@ -21,4 +21,18 @@ FN(vkDestroySwapchainKHR) \
FN(vkGetSwapchainImagesKHR) \
FN(vkAcquireNextImageKHR) \
- FN(vkQueuePresentKHR)
+ FN(vkQueuePresentKHR) \
+ FN(vkCreateCommandPool) \
+ FN(vkDestroyCommandPool) \
+ FN(vkResetCommandPool) \
+ FN(vkDeviceWaitIdle) \
+ FN(vkAllocateCommandBuffers) \
+ FN(vkResetCommandBuffer) \
+ FN(vkFreeCommandBuffers) \
+ FN(vkBeginCommandBuffer) \
+ FN(vkEndCommandBuffer) \
+ FN(vkQueueSubmit) \
+ FN(vkCreateSemaphore) \
+ FN(vkDestroySemaphore) \
+ FN(vkCmdPipelineBarrier) \
+ FN(vkCmdClearColorImage)
|