Removed the exclusion of CullSettings from the genwrapper.conf, and then changed the CullStack RefMatrix& methods to RefMatrix*

as the RefMatrix& versions caused the wrappers to fail.
This commit is contained in:
Robert Osfield
2007-02-21 13:48:01 +00:00
parent 664522fb02
commit 228fd04a19
22 changed files with 337 additions and 61 deletions

View File

@@ -259,6 +259,8 @@ void View::setUpViewOnSingleScreen(unsigned int screenNum)
void View::assignSceneDataToCameras()
{
osg::notify(osg::NOTICE)<<"View::assignSceneDataToCameras()"<<std::endl;
osg::Node* sceneData = _scene.valid() ? _scene->getSceneData() : 0;
if (_cameraManipulator.valid())

View File

@@ -1480,7 +1480,7 @@ void Viewer::setUpRenderingSupport()
}
// osg::notify(osg::NOTICE)<<"localCamera"<<std::endl;
osg::notify(osg::NOTICE)<<"localCamera "<<camera->getName()<<std::endl;
ViewerDoubleBufferedRenderingOperation* vdbro = new ViewerDoubleBufferedRenderingOperation(graphicsThreadDoesCull, sceneViewList[0], sceneViewList[1], dp, _startTick);
gc->add(vdbro);
++numViewerDoubleBufferedRenderingOperation;