Structures

VkImageSubresource2

Structure specifying an image subresource

The VkImageSubresource2 structure is defined as:

typedef struct VkImageSubresource2 {
    VkStructureType sType;
    void* pNext;
    VkImageSubresource imageSubresource;
} VkImageSubresource2;

or the equivalent

typedef VkImageSubresource2 VkImageSubresource2KHR;

or the equivalent

typedef VkImageSubresource2 VkImageSubresource2EXT;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • imageSubresource is a VkImageSubresource structure.

Valid Usage (Implicit)

VUID-VkImageSubresource2-sType-sType

sType must be VK_STRUCTURE_TYPE_IMAGE_SUBRESOURCE_2