25#ifndef SFML_BLENDMODE_HPP
26#define SFML_BLENDMODE_HPP
31#include <SFML/Graphics/Export.hpp>
152SFML_GRAPHICS_API
extern const BlendMode BlendAlpha;
153SFML_GRAPHICS_API
extern const BlendMode BlendAdd;
154SFML_GRAPHICS_API
extern const BlendMode BlendMultiply;
155SFML_GRAPHICS_API
extern const BlendMode BlendMin;
156SFML_GRAPHICS_API
extern const BlendMode BlendMax;
157SFML_GRAPHICS_API
extern const BlendMode BlendNone;
Blending modes for drawing.
BlendMode(Factor sourceFactor, Factor destinationFactor, Equation blendEquation=Add)
Construct the blend mode given the factors and equation.
Factor colorSrcFactor
Source blending factor for the color channels.
Equation alphaEquation
Blending equation for the alpha channel.
BlendMode(Factor colorSourceFactor, Factor colorDestinationFactor, Equation colorBlendEquation, Factor alphaSourceFactor, Factor alphaDestinationFactor, Equation alphaBlendEquation)
Construct the blend mode given the factors and equation.
Equation
Enumeration of the blending equations.
@ Subtract
Pixel = Src * SrcFactor - Dst * DstFactor.
@ ReverseSubtract
Pixel = Dst * DstFactor - Src * SrcFactor.
@ Add
Pixel = Src * SrcFactor + Dst * DstFactor.
@ Min
Pixel = min(Dst, Src)
BlendMode()
Default constructor.
Factor alphaSrcFactor
Source blending factor for the alpha channel.
Factor alphaDstFactor
Destination blending factor for the alpha channel.
Factor colorDstFactor
Destination blending factor for the color channels.
Equation colorEquation
Blending equation for the color channels.
Factor
Enumeration of the blending factors.
@ DstColor
(dst.r, dst.g, dst.b, dst.a)
@ OneMinusSrcColor
(1, 1, 1, 1) - (src.r, src.g, src.b, src.a)
@ DstAlpha
(dst.a, dst.a, dst.a, dst.a)
@ OneMinusSrcAlpha
(1, 1, 1, 1) - (src.a, src.a, src.a, src.a)
@ SrcAlpha
(src.a, src.a, src.a, src.a)
@ OneMinusDstColor
(1, 1, 1, 1) - (dst.r, dst.g, dst.b, dst.a)
@ SrcColor
(src.r, src.g, src.b, src.a)