Specification
C Version:
float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a);
C Implementation Specific Version:
void wisVKCommandListSetBlendFactors(const WisVKCommandList* self,
float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a);
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{
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{
void VKCommandList::SetBlendFactors(float blend_factor_r,
float blend_factor_g,
float blend_factor_b,
float blend_factor_a) const noexcept;
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