Function Prototype
vkCreateCommandPool
Create a new command pool object
To create a command pool, call:
VkResult vkCreateCommandPool(
VkDevice device,
const VkCommandPoolCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkCommandPool* pCommandPool);
pub fn create_command_pool(
device: vk::Device,
p_create_info: *const vk::CommandPoolCreateInfo,
p_allocator: *const vk::AllocationCallbacks,
p_command_pool: *mut vk::CommandPool,
) -> vk::Result;
deviceis the logical device that creates the command pool.pCreateInfois a pointer to a VkCommandPoolCreateInfo structure specifying the state of the command pool object.pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.pCommandPoolis a pointer to a VkCommandPool handle in which the created pool is returned.
Valid Usage
VUID-vkCreateCommandPool-queueFamilyIndex-01937
pCreateInfo→queueFamilyIndex must be the index of a queue family
available in the logical device device
Valid Usage (Implicit)
VUID-vkCreateCommandPool-device-parameter
device must be a valid VkDevice handle
VUID-vkCreateCommandPool-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkCommandPoolCreateInfo structure
VUID-vkCreateCommandPool-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateCommandPool-pCommandPool-parameter
pCommandPool must be a valid pointer to a VkCommandPool handle
VUID-vkCreateCommandPool-device-queuecount
The device must have been created with at least 1 queue
Parent
VK_VERSION_1_0Type
Function Prototype