BlendMode.h File Reference

#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...

Enumeration Type Documentation

enum sfBlendMode

Enumerate the blending modes for drawable objects.

Enumerator:
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.