Table of Contents

Enum D3D11CompositorBlend

Namespace
VisioForge.Core.Types.X.VideoEffects
Assembly
VisioForge.Core.dll

D3D11 compositor blend mode.

public enum D3D11CompositorBlend

Fields

Zero = 0

The blend factor is (0, 0, 0, 0).

One = 1

The blend factor is (1, 1, 1, 1).

SourceColor = 2

The blend factor is (Rs, Gs, Bs, As).

InverseSourceColor = 3

The blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As).

SourceAlpha = 4

The blend factor is (As, As, As, As).

InverseSourceAlpha = 5

The blend factor is (1 - As, 1 - As, 1 - As, 1 - As).

DestAlpha = 6

The blend factor is (Ad, Ad, Ad, Ad).

InverseDestAlpha = 7

The blend factor is (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad).

DestColor = 8

The blend factor is (Rd, Gd, Bd, Ad).

InverseDestColor = 9

The blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad).

SourceAlphaSat = 10

The blend factor is (f, f, f, 1); where f = min(As, 1 - Ad).

BlendFactor = 11

User defined blend factor.

InverseBlendFactor = 12

Inverse of user defined blend factor.