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);
  • device is the logical device that creates the image view.
  • pCreateInfo is a pointer to a VkImageViewCreateInfo structure containing parameters to be used to create the image view.
  • pAllocator controls host memory allocation as described in the Memory Allocation chapter.
  • pView is 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-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