Go to file
Robert Osfield 7117ff4bd3 Added support for controlling the frequency of checking for OpenGL errors
via:

        enum CheckForGLErrors
        {
            /** NEVER_CHECK_GL_ERRORS hints that OpenGL need not be checked for, this
                is the fastest option since checking for errors does incurr a small overhead.*/
            NEVER_CHECK_GL_ERRORS,
            /** ONCE_PER_FRAME means that OpenGl errors will be checked for once per
                frame, the overhead is still small, but at least OpenGL errors that are occurring
                will be caught, the reporting isn't fine grained enough for debugging purposes.*/
            ONCE_PER_FRAME,
            /** ONCE_PER_ATTRIBUTE means that OpenGL errors will be checked for after
                every attribute is applied, allow errors to be directly associated with
                particular operations which makes debugging much easier.*/
            ONCE_PER_ATTRIBUTE
        };

        /** Set whether and how often OpenGL errors should be checked for.*/
        void setCheckForGLErrors(CheckForGLErrors check) { _checkGLErrors = check; }

        /** Get whether and how often OpenGL errors should be checked for.*/
        CheckForGLErrors getCheckForGLErrors() const { return _checkGLErrors; }
2005-04-29 20:56:20 +00:00
applications Commented out support for the -m option for inserting 3d models in a terrain 2005-04-20 08:51:48 +00:00
bin Added .README to prevent CVS from deleting the empty bin directory when checking 2001-12-29 20:53:08 +00:00
dist Removed old RPM spec files. This shouldn't be in the repository as they 2004-12-04 23:59:16 +00:00
doc/Doxyfiles Removed link reference to osgGL2 in doxygen file, added osgIntrospection 2005-04-15 10:15:26 +00:00
examples Moved osgParticle across to standard OSG coding style. 2005-04-29 09:47:57 +00:00
include Added support for controlling the frequency of checking for OpenGL errors 2005-04-29 20:56:20 +00:00
lib Removed osgPlugins from lib, which is now built on the fly 2003-03-12 20:10:43 +00:00
Make Fixed the Mingw settings for GDAL_LIBS (was written as GDAL_LIB which wasn't 2005-04-28 19:41:16 +00:00
src Added support for controlling the frequency of checking for OpenGL errors 2005-04-29 20:56:20 +00:00
VisualStudio VS.7.1 linker warning fix 2005-04-29 18:51:14 +00:00
AUTHORS.txt Added Mike's submission to Authors 2004-11-30 18:13:53 +00:00
ChangeLog Cleaned up the xine plugin to better handle unsupported video files. 2005-04-22 13:32:46 +00:00
GNUmakefile Added tagrules for 'make tag' convenience 2004-12-02 21:49:58 +00:00
INSTALL.txt Fixed reference to install instructions 2004-11-27 17:06:44 +00:00
LICENSE.txt Update of 5/27/03 backup with 6/20/03 tarball 2003-06-24 15:36:53 +00:00
NEWS.txt Added visual studio files for osgspotlight example (Mike Weiblen) 2004-11-28 17:11:21 +00:00
README.txt Moved the main documentation onto the wiki website, and removed from the 2004-11-17 12:58:50 +00:00
runexamples.bat Added support for per context extension string. 2005-04-26 13:15:27 +00:00

Welcome to the OpenSceneGraph (OSG).

For up to date information on the project, how to compile and run libraries 
and examples, and see the documentation on the OpenSceneGraph website.

    http://www.openscenegraph.org
  

Robert Osfield. 
robert@openscenegraph.com
November 2004.