Changeset 8582

Show
Ignore:
Timestamp:
07/15/08 11:55:33
Author:
robert
Message:

Missing check-ins

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OpenSceneGraph/trunk/include/osgDB/ReaderWriter

    r8577 r8582  
    5555         
    5656        /** 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; } 
    5858         
    5959        /** return which list of file extensions supported by ReaderWriter. */ 
  • OpenSceneGraph/trunk/include/osgDB/Registry

    r8541 r8582  
    116116        void closeAllLibraries(); 
    117117 
     118        typedef std::vector< osg::ref_ptr<ReaderWriter> > ReaderWriterList; 
     119 
    118120        /** get a reader writer which handles specified extension.*/ 
    119121        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; } 
    120128  
    121129        osg::Object*         readObjectOfType(const osg::Object& compObj,Input& fr);        
     
    451459        virtual ~Registry(); 
    452460 
    453         typedef std::vector< osg::ref_ptr<ReaderWriter> >               ReaderWriterList; 
    454461        typedef std::map< std::string, osg::ref_ptr<DotOsgWrapper> >    DotOsgWrapperMap; 
    455462        typedef std::vector< osg::ref_ptr<DynamicLibrary> >             DynamicLibraryList; 
  • OpenSceneGraph/trunk/src/osgShadow/ShadowVolume.cpp

    r6952 r8582  
    4040    // _drawMode = osgShadow::ShadowVolumeGeometry::GEOMETRY; 
    4141     
    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; 
    4343} 
    4444