CanvasItemMaterial.BlendMode/blendMode - multiple declarations
Function CanvasItemMaterial.blendMode
The manner in which a material's rendering is applied to underlying textures.
CanvasItemMaterial . BlendMode blendMode() nothrow @property @nogc;
void blendMode
(
long v
) nothrow @property @nogc;
Enum CanvasItemMaterial.BlendMode
enum BlendMode
: int { ... }
Enum members
Name | Description |
---|---|
blendModeAdd
|
Additive blending mode. |
blendModeMix
|
Mix blending mode. Colors are assumed to be independent of the alpha (opacity) value. |
blendModeMul
|
Multiplicative blending mode. |
blendModePremultAlpha
|
Mix blending mode. Colors are assumed to be premultiplied by the alpha (opacity) value. |
blendModeSub
|
Subtractive blending mode. |