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;
pub struct SubsampledImageFormatPropertiesEXT {
s_type: vk::StructureType,
p_next: *const c_void,
subsampled_image_descriptor_count: u32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.subsampledImageDescriptorCountis 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