Changeset 8582
- Timestamp:
- 07/15/08 11:55:33
- Files:
-
- OpenSceneGraph/trunk/include/osgDB/ReaderWriter (modified) (1 diff)
- OpenSceneGraph/trunk/include/osgDB/Registry (modified) (2 diffs)
- OpenSceneGraph/trunk/src/osgShadow/ShadowVolume.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/include/osgDB/ReaderWriter
r8577 r8582 55 55 56 56 /** return which list of file extensions supported by ReaderWriter. */ 57 virtual const FormatDescriptionMap& supportedExtension () const { return _supportedExtensions; }57 virtual const FormatDescriptionMap& supportedExtensions() const { return _supportedExtensions; } 58 58 59 59 /** return which list of file extensions supported by ReaderWriter. */ OpenSceneGraph/trunk/include/osgDB/Registry
r8541 r8582 116 116 void closeAllLibraries(); 117 117 118 typedef std::vector< osg::ref_ptr<ReaderWriter> > ReaderWriterList; 119 118 120 /** get a reader writer which handles specified extension.*/ 119 121 ReaderWriter* getReaderWriterForExtension(const std::string& ext); 122 123 /** get list of all registered ReaderWriters.*/ 124 ReaderWriterList& getReaderWriterList() { return _rwList; } 125 126 /** get const list of all registered ReaderWriters.*/ 127 const ReaderWriterList& getReaderWriterList() const { return _rwList; } 120 128 121 129 osg::Object* readObjectOfType(const osg::Object& compObj,Input& fr); … … 451 459 virtual ~Registry(); 452 460 453 typedef std::vector< osg::ref_ptr<ReaderWriter> > ReaderWriterList;454 461 typedef std::map< std::string, osg::ref_ptr<DotOsgWrapper> > DotOsgWrapperMap; 455 462 typedef std::vector< osg::ref_ptr<DynamicLibrary> > DynamicLibraryList; OpenSceneGraph/trunk/src/osgShadow/ShadowVolume.cpp
r6952 r8582 40 40 // _drawMode = osgShadow::ShadowVolumeGeometry::GEOMETRY; 41 41 42 osg::notify(osg:: NOTICE)<<"Warning: osgShadow::ShadowVolume technique is still in development, with current limitations that make it unsuitable for deployment. Please contact the osg-users for an update of developements."<<std::endl;42 osg::notify(osg::INFO)<<"Warning: osgShadow::ShadowVolume technique is still in development, with current limitations that make it unsuitable for deployment. Please contact the osg-users for an update of developements."<<std::endl; 43 43 } 44 44
