enum BlendOperation

Operations that determines how are blending factors combined.

Values

NameValueDescription
BO_ADD 0 Blend factors are added together.
BO_SUBTRACT 1 Blend factors are subtracted in "srcFactor - dstFactor" order.
BO_REVERSE_SUBTRACT 2 Blend factors are subtracted in "dstFactor - srcFactor" order.
BO_MIN 3 Minimum of the two factors is chosen.
BO_MAX 4 Maximum of the two factors is chosen.