18 #ifndef EQFABRIC_COLORMASK_H 19 #define EQFABRIC_COLORMASK_H 22 #include <lunchbox/bitOperation.h> 38 ColorMask() : red( true ), green( true ), blue( true ), alpha( true ) {}
41 ColorMask(
const bool r,
const bool g,
const bool b,
43 : red( r ), green( g ), blue( b ), alpha( a ) {}
74 #endif // EQFABRIC_COLORMASK_H Defines export visibility macros for library EqualizerFabric.
Defines which parts of the color buffer are to be written.
The Equalizer client library.
std::ostream & operator<<(std::ostream &os, const AxisEvent &event)
Print the axis event to the given output stream.
ColorMask()
Construct a color mask with all components enabled.
ColorMask(const bool r, const bool g, const bool b, const bool a=true)
Construct a color mask with given default values.