On 21 March 2012 09:45, Robert Osfield <[email protected]> wrote: > Horahhh... Now we are getting someone. Small localised changes. This > I'm happy to merge.
I have just made these changes myself and checked them into svn/trunk: $ svn diff Index: include/osg/GL =================================================================== --- include/osg/GL (revision 13036) +++ include/osg/GL (working copy) @@ -188,33 +188,33 @@ #endif #ifdef OSG_GL1_AVAILABLE - #define OSG_GL1_FEATURES 1 + #define OSG_GL1_FEATURES true #else - #define OSG_GL1_FEATURES 0 + #define OSG_GL1_FEATURES false #endif #ifdef OSG_GL2_AVAILABLE - #define OSG_GL2_FEATURES 1 + #define OSG_GL2_FEATURES true #else - #define OSG_GL2_FEATURES 0 + #define OSG_GL2_FEATURES false #endif #ifdef OSG_GL3_AVAILABLE - #define OSG_GL3_FEATURES 1 + #define OSG_GL3_FEATURES true #else - #define OSG_GL3_FEATURES 0 + #define OSG_GL3_FEATURES false #endif #ifdef OSG_GLES1_AVAILABLE - #define OSG_GLES1_FEATURES 1 + #define OSG_GLES1_FEATURES true #else - #define OSG_GLES1_FEATURES 0 + #define OSG_GLES1_FEATURES false #endif #ifdef OSG_GLES2_AVAILABLE - #define OSG_GLES2_FEATURES 1 + #define OSG_GLES2_FEATURES true #else - #define OSG_GLES2_FEATURES 0 + #define OSG_GLES2_FEATURES false #endif _______________________________________________ osg-submissions mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org
