Enum D3D11CompositorBlend
D3D11 compositor blend mode.
Namespace: VisioForge.Core.Types.X.VideoEffects
Assembly: VisioForge.Core.dll
Syntax
public enum D3D11CompositorBlend
Fields
| Name | Description |
|---|---|
| BlendFactor | User defined blend factor. |
| DestAlpha | The blend factor is (Ad, Ad, Ad, Ad). |
| DestColor | The blend factor is (Rd, Gd, Bd, Ad). |
| InverseBlendFactor | Inverse of user defined blend factor. |
| InverseDestAlpha | The blend factor is (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad). |
| InverseDestColor | The blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad). |
| InverseSourceAlpha | The blend factor is (1 - As, 1 - As, 1 - As, 1 - As). |
| InverseSourceColor | The blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As). |
| One | The blend factor is (1, 1, 1, 1). |
| SourceAlpha | The blend factor is (As, As, As, As). |
| SourceAlphaSat | The blend factor is (f, f, f, 1); where f = min(As, 1 - Ad). |
| SourceColor | The blend factor is (Rs, Gs, Bs, As). |
| Zero | The blend factor is (0, 0, 0, 0). |