2001-01-11 00:32:10 +08:00
|
|
|
#ifndef OSG_CULLFACE
|
|
|
|
#define OSG_CULLFACE 1
|
|
|
|
|
|
|
|
#include <osg/GL>
|
2001-09-20 05:08:56 +08:00
|
|
|
#include <osg/StateAttribute>
|
|
|
|
#include <osg/StateSet>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** Class to globally enable/disable OpenGL's polygon culling mode=.
|
2001-01-11 00:32:10 +08:00
|
|
|
*/
|
2001-09-20 05:08:56 +08:00
|
|
|
class SG_EXPORT CullFace : public StateAttribute
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
public :
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
CullFace();
|
|
|
|
virtual bool isSameKindAs(const Object* obj) const { return dynamic_cast<const CullFace*>(obj)!=0L; }
|
|
|
|
virtual Object* clone() const { return new CullFace(); }
|
|
|
|
virtual const char* className() const { return "CullFace"; }
|
|
|
|
|
|
|
|
virtual const Type getType() const { return CULLFACE; }
|
|
|
|
|
|
|
|
virtual void setStateSetModes(StateSet& ds,const GLModeValue value) const
|
|
|
|
{
|
|
|
|
ds.setMode(GL_CULL_FACE,value);
|
|
|
|
}
|
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
enum Mode {
|
|
|
|
FRONT = GL_FRONT,
|
|
|
|
BACK = GL_BACK,
|
|
|
|
FRONT_AND_BACK = GL_FRONT_AND_BACK
|
|
|
|
};
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
inline void setMode(const Mode mode) { _mode = mode; }
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
inline const Mode getMode() const { return _mode; }
|
|
|
|
|
|
|
|
virtual void apply(State& state) const;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual ~CullFace();
|
|
|
|
|
|
|
|
Mode _mode;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|