Class BlendMode
- Namespace
- Fantas
- Assembly
- Fantas.dll
Blend modes operations
public sealed class BlendMode : Enum
- Inheritance
-
BlendMode
Fields
Add
Add source and destination
public const BlendMode Add = 1
Field Value
Alpha
Blending source and destination using Alpha
public const BlendMode Alpha = 0
Field Value
Multiply
Source multiplied by destination
public const BlendMode Multiply = 3
Field Value
MultiplyAlpha
Source multiplied by destination, with the alpha channel
public const BlendMode MultiplyAlpha = 7
Field Value
MultiplyX2
Source multiplied by destination and doubled
public const BlendMode MultiplyX2 = 4
Field Value
Replace
Opaque blend, replacing destination color
public const BlendMode Replace = 6
Field Value
Screen
Source added to the destination times the inverse of source
public const BlendMode Screen = 5
Field Value
Subtract
Subtract source from destination
public const BlendMode Subtract = 2
Field Value
value__
public int value__