Updates to clean up wrapper generation, and to update wrappers

This commit is contained in:
Robert Osfield
2005-05-24 15:34:23 +00:00
parent 58962475f1
commit e229a8cb67
7 changed files with 33 additions and 5 deletions

View File

@@ -626,7 +626,7 @@ class OSGTERRAIN_EXPORT DataSet : public osg::Referenced
{
DefaultSourceAdvancer() {}
bool isActive(const CompositeSource& composite,int index)
bool isActive(const CompositeSource& /*composite*/,int /*index*/)
{
return true;
}

View File

@@ -57,7 +57,9 @@ class OSGUTIL_EXPORT RenderBin : public osg::Object
RenderBin(SortMode mode=getDefaultRenderBinSortMode());
RenderBin();
RenderBin(SortMode mode);
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
RenderBin(const RenderBin& rhs,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);

View File

@@ -36,7 +36,8 @@ class OSGUTIL_EXPORT RenderStage : public RenderBin
public:
RenderStage(SortMode mode=getDefaultRenderBinSortMode());
RenderStage();
RenderStage(SortMode mode);
RenderStage(const RenderStage& rhs,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);