2001-10-04 23:12:57 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2001 Robert Osfield
|
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
#ifndef OSGUTIL_TRISTRIPVISITOR
|
|
|
|
#define OSGUTIL_TRISTRIPVISITOR 1
|
|
|
|
|
|
|
|
#include <osg/NodeVisitor>
|
|
|
|
#include <osg/Geode>
|
|
|
|
#include <osg/GeoSet>
|
|
|
|
|
|
|
|
#include <osgUtil/Export>
|
|
|
|
|
|
|
|
namespace osgUtil {
|
|
|
|
|
|
|
|
/** A tri stripping visitor for converting GeoSet primitives into tri strips.
|
|
|
|
* The current implemention is based up NVidia's NvTriStrip.
|
|
|
|
*/
|
|
|
|
class OSGUTIL_EXPORT TriStripVisitor : public osg::NodeVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/// default to traversing all children.
|
|
|
|
TriStripVisitor()
|
|
|
|
{
|
|
|
|
setTraversalMode(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** convert mesh primitives in geoset into Tri Strips using
|
2001-09-28 20:36:40 +08:00
|
|
|
* NvTriStrip. Converts all primitive types except points
|
2001-09-20 05:19:47 +08:00
|
|
|
* and lines, linestrips which it leaves unchanged.
|
|
|
|
*/
|
|
|
|
static void stripify(osg::GeoSet& gset);
|
|
|
|
|
|
|
|
/// apply stripify method to all geode geosets.
|
|
|
|
virtual void apply(osg::Geode& geode);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|