2003-01-22 00:45:36 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield
|
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2002-08-19 19:42:37 +08:00
|
|
|
#include <osg/ClearNode>
|
2001-10-02 23:59:49 +08:00
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
/**
|
2002-08-19 19:42:37 +08:00
|
|
|
* ClearNode constructor.
|
2001-10-02 23:59:49 +08:00
|
|
|
*/
|
2002-09-03 21:04:53 +08:00
|
|
|
ClearNode::ClearNode():
|
|
|
|
_requiresClear(true),
|
|
|
|
_clearColor(0.0f,0.0f,0.0f,1.0f)
|
2001-10-02 23:59:49 +08:00
|
|
|
{
|
2002-12-16 21:40:58 +08:00
|
|
|
StateSet* stateset = new StateSet;
|
2001-10-02 23:59:49 +08:00
|
|
|
stateset->setRenderBinDetails(-1,"RenderBin");
|
|
|
|
setStateSet(stateset);
|
|
|
|
}
|
|
|
|
|