Structures
VkPhysicalDeviceMaintenance5Properties
Structure describing various implementation-defined properties introduced with VK_KHR_maintenance5
The VkPhysicalDeviceMaintenance5Properties structure is defined as:
typedef struct VkPhysicalDeviceMaintenance5Properties {
VkStructureType sType;
void* pNext;
VkBool32 earlyFragmentMultisampleCoverageAfterSampleCounting;
VkBool32 earlyFragmentSampleMaskTestBeforeSampleCounting;
VkBool32 depthStencilSwizzleOneSupport;
VkBool32 polygonModePointSize;
VkBool32 nonStrictSinglePixelWideLinesUseParallelogram;
VkBool32 nonStrictWideLinesUseParallelogram;
} VkPhysicalDeviceMaintenance5Properties;
or the equivalent
typedef VkPhysicalDeviceMaintenance5Properties VkPhysicalDeviceMaintenance5PropertiesKHR;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.earlyFragmentMultisampleCoverageAfterSampleCountingis a boolean value indicating whether the fragment shading and multisample coverage operations are performed after sample counting for fragment shaders withEarlyFragmentTestsexecution mode.earlyFragmentSampleMaskTestBeforeSampleCountingis a boolean value indicating whether the sample mask test operation is performed before sample counting for fragment shaders using theEarlyFragmentTestsexecution mode.depthStencilSwizzleOneSupportis a boolean indicating that depth/stencil texturing operations withVK_COMPONENT_SWIZZLE_ONEhave defined behavior.polygonModePointSizeis a boolean value indicating whether the point size of the final rasterization of polygons withVK_POLYGON_MODE_POINTis controlled byPointSize.nonStrictSinglePixelWideLinesUseParallelogramis a boolean value indicating whether non-strict lines with a width of 1.0 are rasterized as parallelograms or using Bresenham’s algorithm.nonStrictWideLinesUseParallelogramis a boolean value indicating whether non-strict lines with a width greater than 1.0 are rasterized as parallelograms or using Bresenham’s algorithm.
If the VkPhysicalDeviceMaintenance5Properties structure is included in the pNext chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceMaintenance5Properties-sType-sType
sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_5_PROPERTIES