#include <SFML/Config.h>
Go to the source code of this file.
Enumerations | |
enum | sfBlendMode { sfBlendAlpha, sfBlendAdd, sfBlendMultiply, sfBlendNone } |
Enumerate the blending modes for drawable objects. More... |
enum sfBlendMode |
Enumerate the blending modes for drawable objects.
sfBlendAlpha | Pixel = Src * a + Dest * (1 - a). |
sfBlendAdd | Pixel = Src + Dest. |
sfBlendMultiply | Pixel = Src * Dest. |
sfBlendNone | No blending. |
Definition at line 37 of file BlendMode.h.