Hi, nice to meet you all.
I'm beginner in OSG.
I'm reading <OpenSceneGraph 3.0 Beginner's Guide> and
practicing the example in this book.
Here are very simple example.
#include <osgDB/ReadFile>
#include <osgViewer/Viewer>
Code:
int main( int argc, char** argv )
{
osg::ref_ptr<osg::Node> root = osgDB::readNodeFile( "cessna.osg" );
osgViewer::Viewer viewer;
viewer.setSceneData( root.get() );
return viewer.run();
}
With this code,
I want to know the time of rendering. [Exclamation]
Are there some methods for this in OSG itself?
If anyone knows please let me know.
...
Thank you!
Cheers,
J.YoungStone
------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=48466#48466
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org