Home -> IStateGroupNode -> BlendFactor

Description

The BlendFactor enumeration specifies the multiplier applied to source and destination color values before a blend operation is evaluated.

Members

Name Description
Public Enum Zero
Uses a factor of zero for all components.
Public Enum One
Uses a factor of one for all components.
Public Enum SourceColor
Uses the source color components as the factor.
Public Enum OneMinusSourceColor
Uses one minus the source color components as the factor.
Public Enum DestinationColor
Uses the destination color components as the factor.
Public Enum OneMinusDestinationColor
Uses one minus the destination color components as the factor.
Public Enum SourceAlpha
Uses the source alpha value as the factor for all components.
Public Enum OneMinusSourceAlpha
Uses one minus the source alpha value as the factor for all components.
Public Enum DestinationAlpha
Uses the destination alpha value as the factor for all components.
Public Enum OneMinusDestinationAlpha
Uses one minus the destination alpha value as the factor for all components.

See also