> Hello, > I was wondering if there was a way to globally disable the > use of display lists and VBO (just for performance profiling > purposes).
If you're using the DatabasePager, you can set OSG_DATABASE_PAGER_DRAWABLE=VertexArrays If not using the DatabasePager, you'll need to write a NodeVisitor to do the equivalent: call setUseDisplayLists( false ) and setUseVertexBufferObjects( false ) on all Drawables. Paul Martz Skew Matrix Software LLC http://www.skew-matrix.com 303 859 9466 _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

