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
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
pViewis an VkImageViewCreateInfo describing the descriptor. -
layoutis the VkImageLayout that the image view will be in when accessed as a descriptor.
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.