sf::Blend Namespace Reference

Enumerate the blending modes for drawable objects. More...

Enumerations

enum  Mode {
  Alpha,
  Add,
  Multiply,
  None
}

Detailed Description

Enumerate the blending modes for drawable objects.


Enumeration Type Documentation

Enumerator:
Alpha 

Pixel = Src * a + Dest * (1 - a).

Add 

Pixel = Src + Dest.

Multiply 

Pixel = Src * Dest.

None 

No blending.

Definition at line 46 of file Drawable.hpp.