wisdom
Loading...
Searching...
No Matches
wisCommandListSetDepthBias Struct Reference

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListSetDepthBias(WisVKCommandList* self,
float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListSetDepthBias(WisDX12CommandList* self,
float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::SetDepthBias(float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias) noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::SetDepthBias(float depth_bias,
float depth_bias_clamp,
float slope_scaled_depth_bias) noexcept;
// Provided by Wisdom 0.7.0.
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