Structures

VkSubsampledImageFormatPropertiesEXT

Structure specifying image descriptor count for subsampled images

To determine the number of image descriptors required to support a subsampled image created with VK_IMAGE_CREATE_SUBSAMPLED_BIT_EXT, add VkSubsampledImageFormatPropertiesEXT to the pNext chain of the VkImageFormatProperties2 structure in a call to vkGetPhysicalDeviceImageFormatProperties2.

The VkSubsampledImageFormatPropertiesEXT structure is defined as:

typedef struct VkSubsampledImageFormatPropertiesEXT {
    VkStructureType sType;
    const void* pNext;
    uint32_t subsampledImageDescriptorCount;
} VkSubsampledImageFormatPropertiesEXT;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • subsampledImageDescriptorCount is the number of image descriptors that the implementation uses to access the image.

Valid Usage (Implicit)

VUID-VkSubsampledImageFormatPropertiesEXT-sType-sType

sType must be VK_STRUCTURE_TYPE_SUBSAMPLED_IMAGE_FORMAT_PROPERTIES_EXT