9 class CommandPool :
public DeviceComponent
15 CommandBuffer* getCommandBuffer(uint32_t index) {
return &m_commandBuffers[index]; }
17 void createCommandBuffers(uint32_t commandBufferCount);
20 void endSingleTimeCommands(
CommandBuffer commandBuffer)
const;
23 VkCommandPool m_commandPool;
25 std::vector<CommandBuffer> m_commandBuffers;