From 4291dd8d606d056c811463b062590ed70e746b03 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 17 Mar 2006 11:28:35 +0000 Subject: [PATCH] From Sohey Yamamoto, fixed eroneous CHECK_BLACK_LISTED_MODES enum value, changing 0xA0 to 0x100 --- include/osgUtil/GLObjectsVisitor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgUtil/GLObjectsVisitor b/include/osgUtil/GLObjectsVisitor index 3f616e64c..111928a8c 100644 --- a/include/osgUtil/GLObjectsVisitor +++ b/include/osgUtil/GLObjectsVisitor @@ -41,7 +41,7 @@ class OSGUTIL_EXPORT GLObjectsVisitor : public osg::NodeVisitor RELEASE_STATE_ATTRIBUTES = 0x20, SWITCH_ON_VERTEX_BUFFER_OBJECTS = 0x40, SWITCH_OFF_VERTEX_BUFFER_OBJECTS = 0x80, - CHECK_BLACK_LISTED_MODES = 0xA0 + CHECK_BLACK_LISTED_MODES = 0x100 }; typedef unsigned int Mode;