BlendFactor Enumeration
Blend factor specify pixel arithmetic.

Namespace: Aspose.ThreeD.Render
Assembly: Aspose.3D (in Aspose.3D.dll) Version: 20.3.0.0 (20.3)
Syntax
public enum BlendFactor
Members
  Member nameValueDescription
Zero0 The blend factor is vec4(0)
One1 The blend factor is vec4(1)
SrcColor2 The blend factor is src.rgba
OneMinusSrcColor3 The blend factor is vec4(1) - src.rgba
DstColor4 The blend factor is dst.rgba
OneMinusDstColor5 The blend factor is vec4(1) - dst.rgba
SrcAlpha6 The blend factor is vec4(src.a)
OneMinusSrcAlpha7 The blend factor is vec4(1 - src.a)
DstAlpha8 The blend factor is vec4(dst.a)
OneMinusDstAlpha9 The blend factor is vec4(1 - dst.a)
ConstantColor10 The blend factor is c where c is specified in BlendColor
OneMinusConstantColor11 The blend factor is vec4(1) - c where c is specified in BlendColor
ConstantAlpha12 The blend factor is vec4(c.a) where c is specified in BlendColor
OneMinusConstantAlpha13 The blend factor is vec4(1 - c.a) where c is specified in BlendColor
SrcAlphaSaturate14 The blend factor is min(src.a, 1 - dst.a)
See Also