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:
@@ -155,8 +155,8 @@ void LightPointNode::traverse(osg::NodeVisitor& nv)
|
||||
if (cv /*&& !cv->isCulled(_bbox)*/)
|
||||
{
|
||||
|
||||
osg::Matrix matrix = cv->getModelViewMatrix();
|
||||
osg::RefMatrix& projection = cv->getProjectionMatrix();
|
||||
osg::Matrix matrix = *(cv->getModelViewMatrix());
|
||||
osg::RefMatrix& projection = *(cv->getProjectionMatrix());
|
||||
osgUtil::StateGraph* rg = cv->getCurrentStateGraph();
|
||||
|
||||
if (rg->leaves_empty())
|
||||
|
||||
Reference in New Issue
Block a user