Hi Brad, On Wed, Dec 3, 2008 at 10:23 PM, Brad Colbert <[EMAIL PROTECTED]> wrote: > What are the UpdateOperations used for in the osgViewer::Viewer class?
The UpdateOperations list is useful for integrating threaded operations that run con-currently with the main frame loop. For instance you'd create an custom osg::Operation, add this to an osg::OperationThreads and to the viewer, then it's called by both threads, the operation itself will have to deal with its own thread safety. A use might be management of custom paging in the background, or networking integration. Robert. _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

