BlendMode Constructor (BlendMode.Factor, BlendMode.Factor, BlendMode.Equation)

SFML.Net

BlendMode Constructor (BlendModeFactor, BlendModeFactor, BlendModeEquation)
Construct the blend mode given the factors and equation

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public BlendMode(
	BlendModeFactor SourceFactor,
	BlendModeFactor DestinationFactor,
	BlendModeEquation BlendEquation
)
Public Sub New ( 
	SourceFactor As BlendModeFactor,
	DestinationFactor As BlendModeFactor,
	BlendEquation As BlendModeEquation
)
public:
BlendMode(
	BlendModeFactor SourceFactor, 
	BlendModeFactor DestinationFactor, 
	BlendModeEquation BlendEquation
)
new : 
        SourceFactor : BlendModeFactor * 
        DestinationFactor : BlendModeFactor * 
        BlendEquation : BlendModeEquation -> BlendMode

Parameters

SourceFactor
Type: SFML.GraphicsBlendModeFactor
Specifies how to compute the source factor for the color and alpha channels.
DestinationFactor
Type: SFML.GraphicsBlendModeFactor
Specifies how to compute the destination factor for the color and alpha channels.
BlendEquation
Type: SFML.GraphicsBlendModeEquation
Specifies how to combine the source and destination colors and alpha.
See Also