VkImageDescriptorInfoEXT(3)

Name

VkImageDescriptorInfoEXT - Structure describing an image descriptor created from an image

C Specification

VkImageDescriptorInfoEXT is defined as:

// Provided by VK_EXT_descriptor_heap
typedef struct VkImageDescriptorInfoEXT {
    VkStructureType                 sType;
    const void*                     pNext;
    const VkImageViewCreateInfo*    pView;
    VkImageLayout                   layout;
} VkImageDescriptorInfoEXT;

Members

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • pView is an VkImageViewCreateInfo describing the descriptor.

  • layout is the VkImageLayout that the image view will be in when accessed as a descriptor.

Description

Valid Usage
Valid Usage (Implicit)

Document Notes

For more information, see the Vulkan Specification.

This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.