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

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListSetBlendFactors(const WisVKCommandList* self,
float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListSetBlendFactors(const WisDX12CommandList* self,
float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::SetBlendFactors(float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::SetBlendFactors(float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a) const noexcept;
// Provided by Wisdom 0.7.0.
void DX12CommandList::SetBlendFactors(float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a) const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisCommandList instance.
  • blend_factor_r specifies blend factor for red color to set.
  • blend_factor_g specifies blend factor for green color to set.
  • blend_factor_b specifies blend factor for blue color to set.
  • blend_factor_a specifies blend factor for alpha channel to set.

Description


See Also