C Specification
The VkDepthBiasInfoEXT structure is defined as:
// Provided by VK_EXT_depth_bias_control
typedef struct VkDepthBiasInfoEXT {
    VkStructureType    sType;
    const void*        pNext;
    float              depthBiasConstantFactor;
    float              depthBiasClamp;
    float              depthBiasSlopeFactor;
} VkDepthBiasInfoEXT;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
depthBiasConstantFactoris a scalar factor controlling the constant depth value added to each fragment.
- 
depthBiasClampis the maximum (or minimum) depth bias of a fragment.
- 
depthBiasSlopeFactoris a scalar factor applied to a fragment’s slope in depth bias calculations.
Description
If pNext does not contain a VkDepthBiasRepresentationInfoEXT
structure, then this command is equivalent to including a
VkDepthBiasRepresentationInfoEXT with depthBiasExact set to
VK_FALSE and depthBiasRepresentation set to
VK_DEPTH_BIAS_REPRESENTATION_LEAST_REPRESENTABLE_VALUE_FORMAT_EXT.
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.