- This enumeration is used to determine the blending modes of a mesh or 2D rendering operation in the BlendingModeEx functions:
| NAME | VALUE | DESCRIPTION |
|---|---|---|
| TV_BLENDEX_DESTALPHA | 7 | Uses the alpha of the destination. |
| TV_BLENDEX_INVDESTALPHA | 8 | Uses the inverse alpha of the destination. |
| TV_BLENDEX_INVSRCALPHA | 6 | Uses the inverse alpha of the source. |
| TV_BLENDEX_INVSRCCOLOR | 4 | Uses the inverse color of the source. |
| TV_BLENDEX_ONE | 2 | Uses one as blending factor. |
| TV_BLENDEX_SRCALPHA | 5 | Uses the alpha of the source. |
| TV_BLENDEX_SRCCOLOR | 3 | Uses the color of the source. |
| TV_BLENDEX_ZERO | 1 | Uses zero as blending factor. |