Show
Ignore:
Timestamp:
05/28/10 18:04:19 (21 months ago)
Author:
robert
Message:

Converted osg::notify to OSG_INFO etc.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • OpenSceneGraph/trunk/src/osgVolume/FixedFunctionTechnique.cpp

    r10135 r11480  
    9999void FixedFunctionTechnique::init() 
    100100{ 
    101     osg::notify(osg::INFO)<<"FixedFunctionTechnique::init()"<<std::endl; 
     101    OSG_INFO<<"FixedFunctionTechnique::init()"<<std::endl; 
    102102 
    103103    if (!_volumeTile) 
    104104    { 
    105         osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::init(), error no volume tile assigned."<<std::endl; 
     105        OSG_NOTICE<<"FixedFunctionTechnique::init(), error no volume tile assigned."<<std::endl; 
    106106        return; 
    107107    } 
     
    109109    if (_volumeTile->getLayer()==0) 
    110110    { 
    111         osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::init(), error no layer assigend to volume tile."<<std::endl; 
     111        OSG_NOTICE<<"FixedFunctionTechnique::init(), error no layer assigend to volume tile."<<std::endl; 
    112112        return; 
    113113    } 
     
    115115    if (_volumeTile->getLayer()->getImage()==0) 
    116116    { 
    117         osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::init(), error no image assigned to layer."<<std::endl; 
     117        OSG_NOTICE<<"FixedFunctionTechnique::init(), error no image assigned to layer."<<std::endl; 
    118118        return; 
    119119    } 
     
    153153    { 
    154154        masterLocator = _volumeTile->getLayer()->getLocator(); 
    155         osg::notify(osg::NOTICE)<<"assigning locator = "<<masterLocator<<std::endl; 
     155        OSG_NOTICE<<"assigning locator = "<<masterLocator<<std::endl; 
    156156    } 
    157157 
     
    162162    } 
    163163     
    164     osg::notify(osg::NOTICE)<<"Matrix = "<<matrix<<std::endl; 
     164    OSG_NOTICE<<"Matrix = "<<matrix<<std::endl; 
    165165 
    166166    osg::Texture::FilterMode minFilter = osg::Texture::NEAREST; 
     
    258258void FixedFunctionTechnique::update(osgUtil::UpdateVisitor* uv) 
    259259{ 
    260 //    osg::notify(osg::NOTICE)<<"FixedFunctionTechnique:update(osgUtil::UpdateVisitor* nv):"<<std::endl; 
     260//    OSG_NOTICE<<"FixedFunctionTechnique:update(osgUtil::UpdateVisitor* nv):"<<std::endl; 
    261261} 
    262262 
    263263void FixedFunctionTechnique::cull(osgUtil::CullVisitor* cv) 
    264264{ 
    265     //osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::cull(osgUtil::CullVisitor* nv)"<<std::endl;     
     265    //OSG_NOTICE<<"FixedFunctionTechnique::cull(osgUtil::CullVisitor* nv)"<<std::endl;     
    266266    if (_node.valid()) 
    267267    { 
     
    272272void FixedFunctionTechnique::cleanSceneGraph() 
    273273{ 
    274     osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::cleanSceneGraph()"<<std::endl; 
     274    OSG_NOTICE<<"FixedFunctionTechnique::cleanSceneGraph()"<<std::endl; 
    275275} 
    276276 
    277277void FixedFunctionTechnique::traverse(osg::NodeVisitor& nv) 
    278278{ 
    279     // osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::traverse(osg::NodeVisitor& nv)"<<std::endl; 
     279    // OSG_NOTICE<<"FixedFunctionTechnique::traverse(osg::NodeVisitor& nv)"<<std::endl; 
    280280    if (!_volumeTile) return; 
    281281 
     
    306306    if (_volumeTile->getDirty())  
    307307    { 
    308         osg::notify(osg::INFO)<<"******* Doing init ***********"<<std::endl; 
     308        OSG_INFO<<"******* Doing init ***********"<<std::endl; 
    309309        _volumeTile->init(); 
    310310    }