Hi Jerome, On 27 June 2012 02:05, J.YoungStone <[email protected]> wrote: > I want to compare the rendering time( Time of first loading the model on > viewer) > when loading model using 'osg::Node' type and 'osg::ProxyNode' type.
Nodes don't get rendered so you can't measure how long they take to render, you can only measure what the drawable leaves in their subgraphs take to render. Since the subgraphs are likely to be the same we can safely say that the time will also likely be identical. ProxyNode only effects loading of subgraphs. Robert. _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

