From 191eabd3abc43b06ecf9dabf4ff6fe93a141ae12 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 25 Oct 2013 09:02:39 +0000 Subject: [PATCH] Fixed warning --- src/osgWrappers/serializers/osg/Geometry.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/osgWrappers/serializers/osg/Geometry.cpp b/src/osgWrappers/serializers/osg/Geometry.cpp index f024188a2..ac1795077 100644 --- a/src/osgWrappers/serializers/osg/Geometry.cpp +++ b/src/osgWrappers/serializers/osg/Geometry.cpp @@ -3,13 +3,15 @@ #include #include -BEGIN_USER_TABLE( AttributeBinding, osg::Geometry ); +static void add_user_value_func_AttributeBinding(osgDB::IntLookup* lookup) +{ lookup->add("BIND_OFF",0); // ADD_USER_VALUE("ADD_USER_VALUE( BIND_OFF ); lookup->add("BIND_OVERALL",1); // ADD_USER_VALUE( BIND_OVERALL ); lookup->add("BIND_PER_PRIMITIVE_SET",2); // ADD_USER_VALUE( BIND_PER_PRIMITIVE_SET ); lookup->add("BIND_PER_PRIMITIVE",3); //ADD_USER_VALUE( BIND_PER_PRIMITIVE ); lookup->add("BIND_PER_VERTEX",4); // ADD_USER_VALUE( BIND_PER_VERTEX ); -END_USER_TABLE() + } +static osgDB::UserLookupTableProxy s_user_lookup_table_AttributeBinding(&add_user_value_func_AttributeBinding); USER_READ_FUNC( AttributeBinding, readAttributeBinding ) USER_WRITE_FUNC( AttributeBinding, writeAttributeBinding )