diff --git a/include/osg/Drawable b/include/osg/Drawable index ce4180e76..1173267f1 100644 --- a/include/osg/Drawable +++ b/include/osg/Drawable @@ -136,9 +136,17 @@ class SG_EXPORT Drawable : public Object COLORS = 0x4, TEXTURE_COORDS = 0x8, TEXTURE_COORDS_0 = TEXTURE_COORDS, + /* + * Robert, + * These would have kept you up late if you were + * trying to use these as bitmasks TEXTURE_COORDS_1 = 0x16, TEXTURE_COORDS_2 = 0x32, TEXTURE_COORDS_3 = 0x64 + */ + TEXTURE_COORDS_1 = 0x10, + TEXTURE_COORDS_2 = 0x20, + TEXTURE_COORDS_3 = 0x40 }; class AttributeFunctor diff --git a/src/Demos/osgconv/orientationconverter.cpp b/src/Demos/osgconv/orientationconverter.cpp index 52bcee740..fcbb9e824 100644 --- a/src/Demos/osgconv/orientationconverter.cpp +++ b/src/Demos/osgconv/orientationconverter.cpp @@ -6,7 +6,6 @@ using namespace osg; class TransformFunctor : public osg::Drawable::AttributeFunctor { - public: osg::Matrix _m;