Fixed usage of META_NodeVisitor so it doesn't include ""
This commit is contained in:
@@ -57,7 +57,7 @@ class OSGUTIL_EXPORT CullVisitor : public osg::NodeVisitor, public osg::CullStac
|
||||
/// Copy constructor that does a shallow copy.
|
||||
CullVisitor(const CullVisitor&);
|
||||
|
||||
META_NodeVisitor("osgUtil","CullVisitor")
|
||||
META_NodeVisitor(osgUtil, CullVisitor)
|
||||
|
||||
/** Create a shallow copy of the CullVisitor, used by CullVisitor::create() to clone the prototype. */
|
||||
virtual CullVisitor* clone() const { return new CullVisitor(*this); }
|
||||
|
||||
@@ -36,7 +36,7 @@ class OSGUTIL_EXPORT DisplayRequirementsVisitor : public osg::NodeVisitor
|
||||
* alpha and stencil off.*/
|
||||
DisplayRequirementsVisitor();
|
||||
|
||||
META_NodeVisitor("osgUtil","DisplayRequirementsVisitor")
|
||||
META_NodeVisitor(osgUtil, DisplayRequirementsVisitor)
|
||||
|
||||
/** Set the DisplaySettings. */
|
||||
inline void setDisplaySettings(osg::DisplaySettings* ds) { _ds = ds; }
|
||||
|
||||
@@ -32,7 +32,7 @@ class OSGUTIL_EXPORT DrawElementTypeSimplifierVisitor : public osg::NodeVisitor
|
||||
{
|
||||
public:
|
||||
|
||||
META_NodeVisitor("osgUtil","DrawElementTypeSimplifierVisitor");
|
||||
META_NodeVisitor(osgUtil, DrawElementTypeSimplifierVisitor);
|
||||
|
||||
void apply(osg::Geode& node);
|
||||
};
|
||||
|
||||
@@ -54,7 +54,7 @@ class OSGUTIL_EXPORT GLObjectsVisitor : public osg::NodeVisitor
|
||||
*/
|
||||
GLObjectsVisitor(Mode mode=COMPILE_DISPLAY_LISTS|COMPILE_STATE_ATTRIBUTES|CHECK_BLACK_LISTED_MODES);
|
||||
|
||||
META_NodeVisitor("osg","GLObjectsVisitor")
|
||||
META_NodeVisitor(osgUtil, GLObjectsVisitor)
|
||||
|
||||
virtual void reset()
|
||||
{
|
||||
|
||||
@@ -97,7 +97,7 @@ class OSGUTIL_EXPORT IntersectVisitor : public osg::NodeVisitor
|
||||
IntersectVisitor();
|
||||
virtual ~IntersectVisitor();
|
||||
|
||||
META_NodeVisitor("osgUtil","IntersectVisitor")
|
||||
META_NodeVisitor(osgUtil, IntersectVisitor)
|
||||
|
||||
void reset();
|
||||
|
||||
|
||||
@@ -152,7 +152,7 @@ class OSGUTIL_EXPORT IntersectionVisitor : public osg::NodeVisitor
|
||||
|
||||
IntersectionVisitor(Intersector* intersector=0, ReadCallback* readCallback=0);
|
||||
|
||||
META_NodeVisitor("osgUtil","IntersectionVisitor")
|
||||
META_NodeVisitor(osgUtil, IntersectionVisitor)
|
||||
|
||||
virtual void reset();
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ class OSGUTIL_EXPORT Simplifier : public osg::NodeVisitor
|
||||
|
||||
Simplifier(double sampleRatio=1.0, double maximumError=FLT_MAX, double maximumLength=0.0);
|
||||
|
||||
META_NodeVisitor("osgUtil","Simplifier")
|
||||
META_NodeVisitor(osgUtil, Simplifier)
|
||||
|
||||
void setSampleRatio(float sampleRatio) { _sampleRatio = sampleRatio; }
|
||||
float getSampleRatio() const { return _sampleRatio; }
|
||||
|
||||
@@ -181,7 +181,7 @@ public:
|
||||
|
||||
StatsVisitor();
|
||||
|
||||
META_NodeVisitor("osgUtil","StatsVisitor")
|
||||
META_NodeVisitor(osgUtil, StatsVisitor)
|
||||
|
||||
virtual void reset();
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ class OSGUTIL_EXPORT UpdateVisitor : public osg::NodeVisitor
|
||||
UpdateVisitor();
|
||||
virtual ~UpdateVisitor();
|
||||
|
||||
META_NodeVisitor("osgUtil","UpdateVisitor")
|
||||
META_NodeVisitor(osgUtil, UpdateVisitor)
|
||||
|
||||
virtual void reset();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user