svulc/include/commandpools.h
2024-12-26 23:51:12 +01:00

9 lines
No EOL
416 B
C

#ifndef __COMMADPOOLS_H__
#define __COMMADPOOLS_H__
#include <vulkan/vulkan_core.h>
VkResult svlk_createCommandPool(VkDevice device, int familyindex, int flags, VkCommandPool *commandpool);
VkResult svlk_allocateCommandBuffer(VkDevice device, VkCommandPool cmdpool, int level, int count, VkCommandBuffer *cmdbuffers);
VkResult svlk_recordCommandBuffer(VkCommandBuffer cmdbuf, VkImage image, uint32_t flags);
#endif