Structures
VkMultisamplePropertiesEXT
Structure returning information about sample count specific additional multisampling capabilities
The VkMultisamplePropertiesEXT structure is defined as
typedef struct VkMultisamplePropertiesEXT {
VkStructureType sType;
void* pNext;
VkExtent2D maxSampleLocationGridSize;
} VkMultisamplePropertiesEXT;
pub struct MultisamplePropertiesEXT {
s_type: vk::StructureType,
p_next: *mut c_void,
max_sample_location_grid_size: vk::Extent2D,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.maxSampleLocationGridSizeis the maximum size of the pixel grid in which sample locations can vary.
Valid Usage (Implicit)
VUID-VkMultisamplePropertiesEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_MULTISAMPLE_PROPERTIES_EXT
VUID-VkMultisamplePropertiesEXT-pNext-pNext
pNext must be NULL
Parent
VK_EXT_sample_locationsType
Structures