VkPhysicalDeviceFragmentShadingRatePropertiesKHR
The VkPhysicalDeviceFragmentShadingRatePropertiesKHR
structure is
defined as:
typedef struct VkPhysicalDeviceFragmentShadingRatePropertiesKHR {
VkStructureType sType;
void* pNext;
VkExtent2D minFragmentShadingRateAttachmentTexelSize;
VkExtent2D maxFragmentShadingRateAttachmentTexelSize;
uint32_t maxFragmentShadingRateAttachmentTexelSizeAspectRatio;
VkBool32 primitiveFragmentShadingRateWithMultipleViewports;
VkBool32 layeredShadingRateAttachments;
VkBool32 fragmentShadingRateNonTrivialCombinerOps;
VkExtent2D maxFragmentSize;
uint32_t maxFragmentSizeAspectRatio;
uint32_t maxFragmentShadingRateCoverageSamples;
VkSampleCountFlagBits maxFragmentShadingRateRasterizationSamples;
VkBool32 fragmentShadingRateWithShaderDepthStencilWrites;
VkBool32 fragmentShadingRateWithSampleMask;
VkBool32 fragmentShadingRateWithShaderSampleMask;
VkBool32 fragmentShadingRateWithConservativeRasterization;
VkBool32 fragmentShadingRateWithFragmentShaderInterlock;
VkBool32 fragmentShadingRateWithCustomSampleLocations;
VkBool32 fragmentShadingRateStrictMultiplyCombiner;
} VkPhysicalDeviceFragmentShadingRatePropertiesKHR;
sType
is a VkStructureType value identifying this structure.pNext
isNULL
or a pointer to a structure extending this structure.minFragmentShadingRateAttachmentTexelSize
indicates minimum supported width and height of the portion of the framebuffer corresponding to each texel in a fragment shading rate attachment. Each value must be less than or equal to the values inmaxFragmentShadingRateAttachmentTexelSize
. Each value must be a power-of-two. It must be (0,0) if theattachmentFragmentShadingRate
feature is not supported.maxFragmentShadingRateAttachmentTexelSize
indicates maximum supported width and height of the portion of the framebuffer corresponding to each texel in a fragment shading rate attachment. Each value must be greater than or equal to the values inminFragmentShadingRateAttachmentTexelSize
. Each value must be a power-of-two. It must be (0,0) if theattachmentFragmentShadingRate
feature is not supported.maxFragmentShadingRateAttachmentTexelSizeAspectRatio
indicates the maximum ratio between the width and height of the portion of the framebuffer corresponding to each texel in a fragment shading rate attachment.maxFragmentShadingRateAttachmentTexelSizeAspectRatio
must be a power-of-two value, and must be less than or equal to max(maxFragmentShadingRateAttachmentTexelSize.width
/minFragmentShadingRateAttachmentTexelSize.height
,maxFragmentShadingRateAttachmentTexelSize.height
/minFragmentShadingRateAttachmentTexelSize.width
). It must be 0 if theattachmentFragmentShadingRate
feature is not supported.-
primitiveFragmentShadingRateWithMultipleViewports
specifies whether the primitive fragment shading rate can be used when multiple viewports are used. If this value isVK_FALSE
, only a single viewport must be used, and applications must not write to theViewportMaskNV
orViewportIndex
built-in when settingPrimitiveShadingRateKHR
. It must beVK_FALSE
if the VK_EXT_shader_viewport_index_layer extension, or thegeometryShader
feature is not supported, or if theprimitiveFragmentShadingRate
feature is not supported. -
layeredShadingRateAttachments
specifies whether a shading rate attachment image view can be created with multiple layers. If this value isVK_FALSE
, when creating an image view with ausage
that includesVK_IMAGE_USAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR
,layerCount
must be1
. It must beVK_FALSE
if themultiview
feature, the VK_EXT_shader_viewport_index_layer extension, or thegeometryShader
feature is not supported, or if theattachmentFragmentShadingRate
feature is not supported. fragmentShadingRateNonTrivialCombinerOps
specifies whether VkFragmentShadingRateCombinerOpKHR enums other thanVK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR
orVK_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_KHR
can be used. It must beVK_FALSE
unless either theprimitiveFragmentShadingRate
orattachmentFragmentShadingRate
feature is supported.-
maxFragmentSize
indicates the maximum supported width and height of a fragment. Itswidth
andheight
members must both be power-of-two values. This limit is purely informational, and is not validated. -
maxFragmentSizeAspectRatio
indicates the maximum ratio between the width and height of a fragment.maxFragmentSizeAspectRatio
must be a power-of-two value, and must be less than or equal to the maximum of thewidth
andheight
members ofmaxFragmentSize
. This limit is purely informational, and is not validated. maxFragmentShadingRateCoverageSamples
specifies the maximum number of coverage samples supported in a single fragment.maxFragmentShadingRateCoverageSamples
must be less than or equal to the product of thewidth
andheight
members ofmaxFragmentSize
, and the sample count reported bymaxFragmentShadingRateRasterizationSamples
.maxFragmentShadingRateCoverageSamples
must be less than or equal tomaxSampleMaskWords
× 32 iffragmentShadingRateWithShaderSampleMask
is supported. This limit is purely informational, and is not validated.maxFragmentShadingRateRasterizationSamples
is a VkSampleCountFlagBits value specifying the maximum sample rate supported when a fragment covers multiple pixels. This limit is purely informational, and is not validated.fragmentShadingRateWithShaderDepthStencilWrites
specifies whether the implementation supports writingFragDepth
orFragStencilRefEXT
from a fragment shader for multi-pixel fragments. If this value isVK_FALSE
, writing to those built-ins will clamp the fragment shading rate to (1,1).fragmentShadingRateWithSampleMask
specifies whether the implementation supports setting valid bits of VkPipelineMultisampleStateCreateInfo::pSampleMask
to0
for multi-pixel fragments. If this value isVK_FALSE
, zeroing valid bits in the sample mask will clamp the fragment shading rate to (1,1).fragmentShadingRateWithShaderSampleMask
specifies whether the implementation supports reading or writingSampleMask
for multi-pixel fragments. If this value isVK_FALSE
, using that built-in will clamp the fragment shading rate to (1,1).fragmentShadingRateWithConservativeRasterization
specifies whether conservative rasterization is supported for multi-pixel fragments. It must beVK_FALSE
if VK_EXT_conservative_rasterization is not supported. If this value isVK_FALSE
, using conservative rasterization will clamp the fragment shading rate to (1,1).fragmentShadingRateWithFragmentShaderInterlock
specifies whether fragment shader interlock is supported for multi-pixel fragments. It must beVK_FALSE
if VK_EXT_fragment_shader_interlock is not supported. If this value isVK_FALSE
, using fragment shader interlock will clamp the fragment shading rate to (1,1).fragmentShadingRateWithCustomSampleLocations
specifies whether custom sample locations are supported for multi-pixel fragments. It must beVK_FALSE
if VK_EXT_sample_locations is not supported. If this value isVK_FALSE
, using custom sample locations will clamp the fragment shading rate to (1,1).fragmentShadingRateStrictMultiplyCombiner
specifies whetherVK_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_KHR
accurately performs a multiplication or not. Implementations where this value isVK_FALSE
will instead combine rates with an addition. IffragmentShadingRateNonTrivialCombinerOps
isVK_FALSE
, implementations must report this asVK_FALSE
. IffragmentShadingRateNonTrivialCombinerOps
isVK_TRUE
, implementations should report this asVK_TRUE
.
Multiplication of the combiner rates using the fragment width/height in
linear space is equivalent to an addition of those values in log2 space.
Some implementations inadvertently implemented an addition in linear space
due to unclear requirements originating outside of this specification.
This resulted in fragmentShadingRateStrictMultiplyCombiner
being added.
Fortunately, this only affects situations where a rate of 1 in either
dimension is combined with another rate of 1.
All other combinations result in the exact same result as if multiplication
was performed in linear space due to the clamping logic, and the fact that
both the sum and product of 2 and 2 are equal.
In many cases, this limit will not affect the correct operation of
applications.
If the VkPhysicalDeviceFragmentShadingRatePropertiesKHR
structure is included in the pNext
chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
These properties are related to fragment shading rates.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceFragmentShadingRatePropertiesKHR-sType-sType
sType
must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_PROPERTIES_KHR