C Specification
To dynamically enable whether to bias fragment depth values, call:
// Provided by VK_EXT_extended_dynamic_state2
void vkCmdSetDepthBiasEnableEXT(
VkCommandBuffer commandBuffer,
VkBool32 depthBiasEnable);
Parameters
-
commandBuffer
is the command buffer into which the command will be recorded. -
depthBiasEnable
controls whether to bias fragment depth values.
Description
This command sets the depth bias enable for subsequent drawing commands when
the graphics pipeline is created with
VK_DYNAMIC_STATE_DEPTH_BIAS_ENABLE_EXT
set in
VkPipelineDynamicStateCreateInfo::pDynamicStates
.
Otherwise, this state is specified by the
VkPipelineRasterizationStateCreateInfo::depthBiasEnable
value
used to create the currently active pipeline.
See Also
VK_EXT_extended_dynamic_state2, VkBool32
, VkCommandBuffer
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.