From Chuck Sembroski, fixes for IRIX

This commit is contained in:
Robert Osfield
2006-08-13 07:37:55 +00:00
parent a16568254c
commit 25a91d97f0
3 changed files with 3 additions and 3 deletions

View File

@@ -861,7 +861,7 @@ PrecipitationEffect::PrecipitationDrawable::PrecipitationDrawable():
}
PrecipitationEffect::PrecipitationDrawable::PrecipitationDrawable(const PrecipitationDrawable& copy, const osg::CopyOp& copyop):
Drawable(copy,copyop),
osg::Drawable(copy,copyop),
_requiresPreviousMatrix(copy._requiresPreviousMatrix),
_geometry(copy._geometry),
_drawType(copy._drawType),

View File

@@ -218,7 +218,7 @@ public:
TexturePool* texture,
LightPointAppearancePool* lpAppearance,
ShaderPool* shader )
: Referenced(),
: osg::Referenced(),
_colorPool( color ),
_materialPool( material ),
_texturePool( texture ),

View File

@@ -155,7 +155,7 @@ class GeodeStateOptimizer : public osgUtil::Optimizer::StateVisitor
}
}
StateVisitor::optimize();
osgUtil::Optimizer::StateVisitor::optimize();
}