C Specification
The VkPhysicalDeviceMaintenance9PropertiesKHR structure is defined as:
// Provided by VK_KHR_maintenance9
typedef struct VkPhysicalDeviceMaintenance9PropertiesKHR {
    VkStructureType                     sType;
    void*                               pNext;
    VkBool32                            image2DViewOf3DSparse;
    VkDefaultVertexAttributeValueKHR    defaultVertexAttributeValue;
} VkPhysicalDeviceMaintenance9PropertiesKHR;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
If the image2DViewOf3Dfeature is enabled,image2DViewOf3DSparseindicates whether the implementation supports binding a slice of a sparse 3D image to a 2D image view.
- 
defaultVertexAttributeValueis a VkDefaultVertexAttributeValueKHR that indicates what value the implementation will return when the vertex shader reads unbound vertex attributes. Unbound attributes are those that have no corresponding VkVertexInputAttributeDescription::locationdefined in the bound graphics pipeline or no corresponding VkVertexInputAttributeDescription2EXT::locationset by the most recent call to vkCmdSetVertexInputEXT when the state is dynamic .
Description
If the VkPhysicalDeviceMaintenance9PropertiesKHR structure is included in the pNext chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
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.