1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

LP-29 remove problematic calls to traverse (update only applies to current node)

This commit is contained in:
Philippe Renon 2016-02-21 18:59:54 +01:00
parent d2c8d6c657
commit c75299c4ec
3 changed files with 0 additions and 3 deletions

View File

@ -458,7 +458,6 @@ private slots:
void OSGCamera::Hidden::CameraUpdateCallback::operator()(osg::Node *node, osg::NodeVisitor *nv)
{
h->updateCamera();
// traverse(node, nv);
}
/* class OSGCamera */

View File

@ -272,7 +272,6 @@ private slots:
void OSGModelNode::Hidden::NodeUpdateCallback::operator()(osg::Node *node, osg::NodeVisitor *nv)
{
h->updateNode();
traverse(node, nv);
}
OSGModelNode::OSGModelNode(QObject *parent) : OSGNode(parent), h(new Hidden(this))

View File

@ -167,7 +167,6 @@ private slots:
void OSGTransformNode::Hidden::NodeUpdateCallback::operator()(osg::Node *node, osg::NodeVisitor *nv)
{
h->updateNode();
traverse(node, nv);
}
OSGTransformNode::OSGTransformNode(QObject *parent) : OSGNode(parent), h(new Hidden(this))