Changeset 8324
- Timestamp:
- 05/20/08 11:28:44
- Files:
-
- OpenSceneGraph/trunk/src/osgViewer/Renderer.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/src/osgViewer/Renderer.cpp
r8299 r8324 454 454 if (!sceneView || _done) return; 455 455 456 if (_done) 457 { 458 osg::notify(osg::INFO)<<"Render::release() causing cull_draw to exit"<<std::endl; 459 return; 460 } 461 462 updateSceneView(sceneView); 463 456 464 if (_compileOnNextDraw) 457 465 { 458 466 compile(); 459 467 } 460 461 updateSceneView(sceneView);462 468 463 469 osgViewer::View* view = dynamic_cast<osgViewer::View*>(_camera->getView()); … … 467 473 osg::GraphicsThread* compileThread = compileContext ? compileContext->getGraphicsThread() : 0; 468 474 469 if (_done)470 {471 osg::notify(osg::INFO)<<"Render::release() causing cull_draw to exit"<<std::endl;472 return;473 }474 475 475 476 // osg::notify(osg::NOTICE)<<"RenderingOperation"<<std::endl;
