Changeset 3229
- Timestamp:
- 08/04/04 09:14:12 (9 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgpbuffer/osgpbuffer.cpp
r1900 r3229 89 89 // currently ignore lights in the scene graph itself.. 90 90 // will do later. 91 osgUtil::RenderStage* previous_stage = cv.getCurrentRenderBin()-> _stage;91 osgUtil::RenderStage* previous_stage = cv.getCurrentRenderBin()->getStage(); 92 92 93 93 // set up the background color and clear mask. … … 147 147 cv.setCurrentRenderBin(previousRenderBin); 148 148 149 if (rtts-> _renderGraphList.size()==0 && rtts->_bins.size()==0)149 if (rtts->getRenderGraphList().size()==0 && rtts->getRenderBinList().size()==0) 150 150 { 151 151 // getting to this point means that all the subgraph has been … … 177 177 // and the render to texture stage to the current stages 178 178 // dependancy list. 179 cv.getCurrentRenderBin()-> _stage->addToDependencyList(rtts.get());179 cv.getCurrentRenderBin()->getStage()->addToDependencyList(rtts.get()); 180 180 181 181 // if one exist attach texture to the RenderToTextureStage.
