C Specification
If a pipeline state object is created with
VK_DYNAMIC_STATE_FRAGMENT_SHADING_RATE_KHR enabled, the pipeline
fragment shading rate and combiner operation is set by the command:
// Provided by VK_KHR_fragment_shading_rate
void vkCmdSetFragmentShadingRateKHR(
VkCommandBuffer commandBuffer,
const VkExtent2D* pFragmentSize,
const VkFragmentShadingRateCombinerOpKHR combinerOps[2]);
Parameters
-
commandBufferis the command buffer into which the command will be recorded. -
pFragmentSizespecifies the pipeline fragment shading rate for subsequent draw commands. -
combinerOpsspecifies a VkFragmentShadingRateCombinerOpKHR determining how the pipeline, primitive, and attachment shading rates are combined for fragments generated by subsequent drawing commands.
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.