Renamed osgUtil::RenderGraph to osgUtil::StateGraph

This commit is contained in:
Robert Osfield
2005-10-13 12:51:00 +00:00
parent 5d1b46d25f
commit fb524952b6
26 changed files with 209 additions and 357 deletions

View File

@@ -262,17 +262,17 @@ class OSGUTIL_EXPORT SceneView : public osg::Referenced, public osg::CullSetting
const osg::CollectOccludersVisitor* getCollectOccludersVisitor() const { return _collectOccludersVisistor.get(); }
void setRenderGraph(osgUtil::RenderGraph* rg) { _rendergraph = rg; }
osgUtil::RenderGraph* getRenderGraph() { return _rendergraph.get(); }
const osgUtil::RenderGraph* getRenderGraph() const { return _rendergraph.get(); }
void setStateGraph(osgUtil::StateGraph* rg) { _rendergraph = rg; }
osgUtil::StateGraph* getStateGraph() { return _rendergraph.get(); }
const osgUtil::StateGraph* getStateGraph() const { return _rendergraph.get(); }
void setRenderGraphLeft(osgUtil::RenderGraph* rg) { _rendergraphLeft = rg; }
osgUtil::RenderGraph* getRenderGraphLeft() { return _rendergraphLeft.get(); }
const osgUtil::RenderGraph* getRenderGraphLeft() const { return _rendergraphLeft.get(); }
void setStateGraphLeft(osgUtil::StateGraph* rg) { _rendergraphLeft = rg; }
osgUtil::StateGraph* getStateGraphLeft() { return _rendergraphLeft.get(); }
const osgUtil::StateGraph* getStateGraphLeft() const { return _rendergraphLeft.get(); }
void setRenderGraphRight(osgUtil::RenderGraph* rg) { _rendergraphRight = rg; }
osgUtil::RenderGraph* getRenderGraphRight() { return _rendergraphRight.get(); }
const osgUtil::RenderGraph* getRenderGraphRight() const { return _rendergraphRight.get(); }
void setStateGraphRight(osgUtil::StateGraph* rg) { _rendergraphRight = rg; }
osgUtil::StateGraph* getStateGraphRight() { return _rendergraphRight.get(); }
const osgUtil::StateGraph* getStateGraphRight() const { return _rendergraphRight.get(); }
void setRenderStage(osgUtil::RenderStage* rs) { _renderStage = rs; }
@@ -446,7 +446,7 @@ class OSGUTIL_EXPORT SceneView : public osg::Referenced, public osg::CullSetting
virtual ~SceneView();
/** Do cull traversal of attached scene graph using Cull NodeVisitor.*/
virtual void cullStage(const osg::Matrixd& projection,const osg::Matrixd& modelview,osgUtil::CullVisitor* cullVisitor, osgUtil::RenderGraph* rendergraph, osgUtil::RenderStage* renderStage);
virtual void cullStage(const osg::Matrixd& projection,const osg::Matrixd& modelview,osgUtil::CullVisitor* cullVisitor, osgUtil::StateGraph* rendergraph, osgUtil::RenderStage* renderStage);
const osg::Matrix computeMVPW() const;
@@ -462,17 +462,17 @@ class OSGUTIL_EXPORT SceneView : public osg::Referenced, public osg::CullSetting
osg::ref_ptr<osg::NodeVisitor> _initVisitor;
osg::ref_ptr<osg::NodeVisitor> _updateVisitor;
osg::ref_ptr<osgUtil::CullVisitor> _cullVisitor;
osg::ref_ptr<osgUtil::RenderGraph> _rendergraph;
osg::ref_ptr<osgUtil::StateGraph> _rendergraph;
osg::ref_ptr<osgUtil::RenderStage> _renderStage;
osg::ref_ptr<ComputeStereoMatricesCallback> _computeStereoMatricesCallback;
osg::ref_ptr<osgUtil::CullVisitor> _cullVisitorLeft;
osg::ref_ptr<osgUtil::RenderGraph> _rendergraphLeft;
osg::ref_ptr<osgUtil::StateGraph> _rendergraphLeft;
osg::ref_ptr<osgUtil::RenderStage> _renderStageLeft;
osg::ref_ptr<osgUtil::CullVisitor> _cullVisitorRight;
osg::ref_ptr<osgUtil::RenderGraph> _rendergraphRight;
osg::ref_ptr<osgUtil::StateGraph> _rendergraphRight;
osg::ref_ptr<osgUtil::RenderStage> _renderStageRight;
osg::ref_ptr<osg::CollectOccludersVisitor> _collectOccludersVisistor;