Specification
C Version:
float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias);
C Implementation Specific Version:
void wisVKCommandListSetDepthBias(WisVKCommandList* self,
float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias);
void wisDX12CommandListSetDepthBias(WisDX12CommandList* self,
float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias);
C++ Version:
namespace wis{
void CommandList::SetDepthBias(float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias) noexcept;
}
C++ Implementation Specific Version:
namespace wis{
void VKCommandList::SetDepthBias(float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias) noexcept;
void DX12CommandList::SetDepthBias(float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias) noexcept;
}
Parameters
- this
self self is a pointer to the valid WisCommandList instance.
depth_bias indicates depth bias to set.
depth_bias_clamp indicates depth bias clamp to set.
slope_scaled_depth_bias defines slope-scaled depth bias to set.
Description
See Also