Table of Contents

Enum BlendOperation

Namespace
SharpDX.Direct2D1
Assembly
SharpDX.Direct2D1.dll

Specifies the blend operation on two color sources.

public enum BlendOperation

Fields

Add = 1

Add source 1 and source 2.

Maximum = 5

Find the maximum of source 1 and source 2.

Minimum = 4

Find the minimum of source 1 and source 2.

ReverseSubtract = 3

Subtract source 2 from source 1.

Subtract = 2

Subtract source 1 from source 2.

Remarks

This enumeration has the same numeric values as D3D10_BLEND_OP.