Structures
VkPhysicalDeviceMaintenance5PropertiesKHR
Structure describing various implementation-defined properties introduced with VK_KHR_maintenance5
The VkPhysicalDeviceMaintenance5PropertiesKHR
structure is defined as:
typedef struct VkPhysicalDeviceMaintenance5PropertiesKHR {
VkStructureType sType;
void* pNext;
VkBool32 earlyFragmentMultisampleCoverageAfterSampleCounting;
VkBool32 earlyFragmentSampleMaskTestBeforeSampleCounting;
VkBool32 depthStencilSwizzleOneSupport;
VkBool32 polygonModePointSize;
VkBool32 nonStrictSinglePixelWideLinesUseParallelogram;
VkBool32 nonStrictWideLinesUseParallelogram;
} VkPhysicalDeviceMaintenance5PropertiesKHR;
sType
is a VkStructureType value identifying this structure.pNext
isNULL
or a pointer to a structure extending this structure.earlyFragmentMultisampleCoverageAfterSampleCounting
is a boolean value indicating whether the fragment shading and multisample coverage operations are performed after sample counting for fragment shaders withEarlyFragmentTests
execution mode.earlyFragmentSampleMaskTestBeforeSampleCounting
is a boolean value indicating whether the sample mask test operation is performed before sample counting for fragment shaders using theEarlyFragmentTests
execution mode.depthStencilSwizzleOneSupport
is a boolean indicating that depth/stencil texturing operations withVK_COMPONENT_SWIZZLE_ONE
have defined behavior.polygonModePointSize
is a boolean value indicating whether the point size of the final rasterization of polygons withVK_POLYGON_MODE_POINT
is controlled byPointSize
.nonStrictSinglePixelWideLinesUseParallelogram
is a boolean value indicating whether non-strict lines with a width of 1.0 are rasterized as parallelograms or using Bresenham’s algorithm.nonStrictWideLinesUseParallelogram
is 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 VkPhysicalDeviceMaintenance5PropertiesKHR
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-VkPhysicalDeviceMaintenance5PropertiesKHR-sType-sType
sType
must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_5_PROPERTIES_KHR