Well now I can see why I was having problems. Looks like we've got a copy/paste error in the osgDB::Registry USE_COMPRESSOR_WRAPPER macro. It is currently this:
Code: #define USE_COMPRESSOR_WRAPPER(classname) \ extern "C" void wrapper_serializer_##classname(void); \ static osgDB::PluginFunctionProxy proxy_compressor_##classname(wrapper_compressor_##classname); And needs to be modified to this: Code: #define USE_COMPRESSOR_WRAPPER(classname) \ extern "C" void wrapper_compressor_##classname(void); \ static osgDB::PluginFunctionProxy proxy_compressor_##classname(wrapper_compressor_##classname); I'm going to submit a patch for this for anyone else that has this problem. Thanks! -- Christian ------------------ Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=53147#53147 _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

