BlendingFunction Enumeration |
The operation that will be used when computing the source and destination values that will be used during blending.
Namespace:
AGI.Foundation.Graphics.Advanced
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum BlendingFunction
Public Enumeration BlendingFunction
public enum class BlendingFunction
Members
| Member name | Description |
---|
| BlendFunctionZero |
Multiplies color by (0,0,0,0)
|
| BlendFunctionOne |
Multiplies color by (1,1,1,1)
|
| BlendFunctionSourceColor |
Multiplies color by source color
|
| BlendFunctionOneMinusSourceColor |
Multiplies color by 1 minus source color
|
| BlendFunctionDestinationColor |
Multiplies color by destination color
|
| BlendFunctionOneMinusDestinationColor |
Multiplies color by 1 minus destination color
|
| BlendFunctionSourceAlpha |
Multiplies color by the source color's alpha component
|
| BlendFunctionOneMinusSourceAlpha |
Multiplies color by 1 minus the source color's alpha component
|
| BlendFunctionDestinationAlpha |
Multiplies color by the destination color's alpha component
|
| BlendFunctionOneMinusDestinationAlpha |
Multiplies color by 1 minus the destination color's alpha component
|
| BlendFunctionConstantColor |
Multiplies color by the blending color
|
| BlendFunctionOneMinusConstantColor |
Multiplies color by 1 minus the blending color
|
| BlendFunctionConstantAlpha |
Multiplies color by the blending color's alpha component
|
| BlendFunctionOneMinusConstantAlpha |
Multiplies color by 1 minus the blending color's alpha component
|
See Also