Table of Contents

Enum BlendFunctionValue

Namespace
ShadowDusk.Core
Assembly
ShadowDusk.Core.dll

How source and destination blend terms are combined (mirrors MonoGame's BlendFunction ordinals).

public enum BlendFunctionValue

Fields

Add = 0

Add the source and destination terms.

Max = 4

Take the component-wise maximum of the two terms.

Min = 3

Take the component-wise minimum of the two terms.

ReverseSubtract = 2

Subtract the source term from the destination term.

Subtract = 1

Subtract the destination term from the source term.