~ubuntu-branches/debian/experimental/openscenegraph/experimental

« back to all changes in this revision

Viewing changes to OpenSceneGraph/src/osg/Node.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Luaces
  • Date: 2010-05-03 21:42:01 UTC
  • mfrom: (1.1.9 upstream) (2.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100503214201-iy060qxb94vsfv87
Tags: 2.8.3-3
* Added README.source. Thanks Manuel Montecelo.
* Removed FindGDAL.cmake file supplied by upstream since it does not
  detect current libgdal1-1.6.0. The script provided by CMake works
  fine.
* Removed openthreads-doc since OpenThreads documentation is shared with
  OpenSceneGraph's, hence this package was empty.
* Now ccache handling is being done automatically by CMake.
* Drop conflict dependencies with previous versions to let them coexist
  with current ones (Closes: #580079 #580081).

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        _boundingSphere(node._boundingSphere),
75
75
        _boundingSphereComputed(node._boundingSphereComputed),
76
76
        _parents(), // leave empty as parentList is managed by Group.
77
 
        _updateCallback(node._updateCallback),
 
77
        _updateCallback(copyop(node._updateCallback.get())),
78
78
        _numChildrenRequiringUpdateTraversal(0), // assume no children yet.
79
79
        _numChildrenRequiringEventTraversal(0), // assume no children yet.
80
 
        _cullCallback(node._cullCallback),
 
80
        _cullCallback(copyop(node._cullCallback.get())),
81
81
        _cullingActive(node._cullingActive),
82
82
        _numChildrenWithCullingDisabled(0), // assume no children yet.
83
83
        _numChildrenWithOccluderNodes(0),