BlendStateBlendOp Enum
The BlendStateBlendOp enum defines blending operations used in rendering to determine how source and destination colors are combined.
Enum Values
| Name | Value | Description |
|---|---|---|
ADD | 1 | Adds the source and destination colors:Result = Src + Dest. |
SUBTRACT | 2 | Subtracts the destination color from the source color:Result = Src - Dest. |
REV_SUBTRACT | 3 | Subtracts the source color from the destination color:Result = Dest - Src. |
MIN | 4 | Chooses the minimum value of the source and destination colors. |
MAX | 5 | Chooses the maximum value of the source and destination colors. |