Command pool creation for VulkanDevice

This commit is contained in:
saschawillems 2016-07-23 20:27:51 +02:00
parent 4194673e16
commit dbed50bbf2

View file

@ -362,6 +362,7 @@ namespace vk
cmdPoolInfo.flags = createFlags;
VkCommandPool cmdPool;
VK_CHECK_RESULT(vkCreateCommandPool(logicalDevice, &cmdPoolInfo, nullptr, &cmdPool));
return cmdPool;
}
};