Inheritance diagram for osg::ColorMask:
Public Methods | |
ColorMask () | |
ColorMask (const ColorMask &cm, const CopyOp ©op=CopyOp::SHALLOW_COPY) | |
Copy constructor using CopyOp to manage deep vs shallow copy. | |
META_StateAttribute (osg, ColorMask, COLORMASK) | |
virtual int | compare (const StateAttribute &sa) const |
return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. | |
void | setMask (bool red, bool green, bool blue, bool alpha) |
const bool | getRedMask () const |
const bool | getGreenMask () const |
const bool | getBlueMask () const |
const bool | getAlphaMask () const |
virtual void | apply (State &state) const |
apply the OpenGL state attributes. | |
Protected Methods | |
virtual | ~ColorMask () |
Protected Attributes | |
bool | _red |
bool | _green |
bool | _blue |
bool | _alpha |
|
|
|
Copy constructor using CopyOp to manage deep vs shallow copy.
|
|
|
|
apply the OpenGL state attributes. The global state for the current OpenGL context is passed in to allow the StateAttribute to obtain details on the the current context and state. Implements osg::StateAttribute. |
|
return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs.
Implements osg::StateAttribute. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|