Function Prototype
vkCreateImageView
Create an image view from an existing image
To create an image view, call:
VkResult vkCreateImageView(
VkDevice device,
const VkImageViewCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkImageView* pView);
pub fn create_image_view(
device: vk::Device,
p_create_info: *const vk::ImageViewCreateInfo,
p_allocator: *const vk::AllocationCallbacks,
p_view: *mut vk::ImageView,
) -> vk::Result;
deviceis the logical device that creates the image view.pCreateInfois a pointer to a VkImageViewCreateInfo structure containing parameters to be used to create the image view.pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.pViewis a pointer to a VkImageView handle in which the resulting image view object is returned.
Valid Usage
VUID-vkCreateImageView-device-09667
device must support at least one queue family with one of the
VK_QUEUE_VIDEO_ENCODE_BIT_KHR,
VK_QUEUE_VIDEO_DECODE_BIT_KHR,
VK_QUEUE_COMPUTE_BIT, or VK_QUEUE_GRAPHICS_BIT capabilities
VUID-vkCreateImageView-image-09179
VkImageViewCreateInfo::image must have been created from
device
Valid Usage (Implicit)
VUID-vkCreateImageView-device-parameter
device must be a valid VkDevice handle
VUID-vkCreateImageView-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkImageViewCreateInfo structure
VUID-vkCreateImageView-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateImageView-pView-parameter
pView must be a valid pointer to a VkImageView handle
VUID-vkCreateImageView-device-queuecount
The device must have been created with at least 1 queue
Parent
VK_VERSION_1_0Type
Function Prototype