#ifndef __COMMADPOOLS_H__ #define __COMMADPOOLS_H__ #include 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