2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2002-12-06 17:44:11 +08:00
|
|
|
#ifndef OSGUTIL_DISPLAYREQUIREMENTSVISITOR
|
2001-12-22 06:48:19 +08:00
|
|
|
#define OSGUTIL_DISPLAYREQUIREMENTSVISITOR 1
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#include <osg/NodeVisitor>
|
|
|
|
#include <osg/Geode>
|
2001-12-22 06:48:19 +08:00
|
|
|
#include <osg/DisplaySettings>
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#include <osgUtil/Export>
|
|
|
|
|
|
|
|
namespace osgUtil {
|
|
|
|
|
2004-09-27 02:39:34 +08:00
|
|
|
/** A visitor for traversing a scene graph establishing which OpenGL visuals are
|
|
|
|
* required to support rendering of that scene graph. The results can then be used by
|
|
|
|
* applications to set up their windows with the correct visuals. Have a look at
|
|
|
|
* src/osgGLUT/Viewer.cpp's Viewer::open() method for an example of how to use it.
|
2001-09-20 05:19:47 +08:00
|
|
|
*/
|
2001-12-22 06:48:19 +08:00
|
|
|
class OSGUTIL_EXPORT DisplayRequirementsVisitor : public osg::NodeVisitor
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2004-09-27 02:39:34 +08:00
|
|
|
/** Default to traversing all children, and requiresDoubleBuffer,
|
2001-09-20 05:19:47 +08:00
|
|
|
* requiresRGB and requiresDepthBuffer to true and with
|
|
|
|
* alpha and stencil off.*/
|
2001-12-22 06:48:19 +08:00
|
|
|
DisplayRequirementsVisitor();
|
2001-09-20 05:19:47 +08:00
|
|
|
|
2008-12-17 20:13:15 +08:00
|
|
|
META_NodeVisitor("osgUtil","DisplayRequirementsVisitor")
|
2001-09-20 05:19:47 +08:00
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
/** Set the DisplaySettings. */
|
|
|
|
inline void setDisplaySettings(osg::DisplaySettings* ds) { _ds = ds; }
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
/** Get the DisplaySettings */
|
|
|
|
inline const osg::DisplaySettings* getDisplaySettings() const { return _ds.get(); }
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
virtual void applyStateSet(osg::StateSet& stateset);
|
|
|
|
|
|
|
|
virtual void apply(osg::Node& node);
|
|
|
|
|
|
|
|
virtual void apply(osg::Geode& geode);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
osg::ref_ptr<osg::DisplaySettings> _ds;
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#endif
|