Added missing getBound() method

This commit is contained in:
Robert Osfield 2008-05-12 15:42:20 +00:00
parent 7e8e7587be
commit 61f630e163

View File

@ -603,6 +603,13 @@ void ViewerBase::renderingTraversals()
{
dp->signalBeginFrame(frameStamp);
}
if (scene->getSceneData())
{
// fire off a build of the bounding volumes while we
// are still running single threaded.
scene->getSceneData()->getBound();
}
}
// osg::notify(osg::NOTICE)<<std::endl<<"Start frame"<<std::endl;