C Specification
The VkPhysicalDeviceDepthBiasControlFeaturesEXT structure is defined
as:
// Provided by VK_EXT_depth_bias_control
typedef struct VkPhysicalDeviceDepthBiasControlFeaturesEXT {
    VkStructureType    sType;
    void*              pNext;
    VkBool32           depthBiasControl;
    VkBool32           leastRepresentableValueForceUnormRepresentation;
    VkBool32           floatRepresentation;
    VkBool32           depthBiasExact;
} VkPhysicalDeviceDepthBiasControlFeaturesEXT;Members
This structure describes the following feature:
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
depthBiasControlindicates whether the implementation supports thevkCmdSetDepthBias2EXTcommand and theVkDepthBiasRepresentationInfoEXTstructure.
- 
leastRepresentableValueForceUnormRepresentationindicates whether the implementation supports using theVK_DEPTH_BIAS_REPRESENTATION_LEAST_REPRESENTABLE_VALUE_FORCE_UNORM_EXTdepth bias representation.
- 
floatRepresentationindicates whether the implementation supports using theVK_DEPTH_BIAS_REPRESENTATION_FLOAT_EXTdepth bias representation.
- 
depthBiasExactindicates whether the implementation supports forcing depth bias to not be scaled to ensure a minimum resolvable difference usingVkDepthBiasRepresentationInfoEXT::depthBiasExact.
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.