- Timestamp:
- 05/28/10 18:04:19 (21 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgVolume/FixedFunctionTechnique.cpp
r10135 r11480 99 99 void FixedFunctionTechnique::init() 100 100 { 101 osg::notify(osg::INFO)<<"FixedFunctionTechnique::init()"<<std::endl;101 OSG_INFO<<"FixedFunctionTechnique::init()"<<std::endl; 102 102 103 103 if (!_volumeTile) 104 104 { 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; 106 106 return; 107 107 } … … 109 109 if (_volumeTile->getLayer()==0) 110 110 { 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; 112 112 return; 113 113 } … … 115 115 if (_volumeTile->getLayer()->getImage()==0) 116 116 { 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; 118 118 return; 119 119 } … … 153 153 { 154 154 masterLocator = _volumeTile->getLayer()->getLocator(); 155 osg::notify(osg::NOTICE)<<"assigning locator = "<<masterLocator<<std::endl;155 OSG_NOTICE<<"assigning locator = "<<masterLocator<<std::endl; 156 156 } 157 157 … … 162 162 } 163 163 164 osg::notify(osg::NOTICE)<<"Matrix = "<<matrix<<std::endl;164 OSG_NOTICE<<"Matrix = "<<matrix<<std::endl; 165 165 166 166 osg::Texture::FilterMode minFilter = osg::Texture::NEAREST; … … 258 258 void FixedFunctionTechnique::update(osgUtil::UpdateVisitor* uv) 259 259 { 260 // osg::notify(osg::NOTICE)<<"FixedFunctionTechnique:update(osgUtil::UpdateVisitor* nv):"<<std::endl;260 // OSG_NOTICE<<"FixedFunctionTechnique:update(osgUtil::UpdateVisitor* nv):"<<std::endl; 261 261 } 262 262 263 263 void FixedFunctionTechnique::cull(osgUtil::CullVisitor* cv) 264 264 { 265 // osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::cull(osgUtil::CullVisitor* nv)"<<std::endl;265 //OSG_NOTICE<<"FixedFunctionTechnique::cull(osgUtil::CullVisitor* nv)"<<std::endl; 266 266 if (_node.valid()) 267 267 { … … 272 272 void FixedFunctionTechnique::cleanSceneGraph() 273 273 { 274 osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::cleanSceneGraph()"<<std::endl;274 OSG_NOTICE<<"FixedFunctionTechnique::cleanSceneGraph()"<<std::endl; 275 275 } 276 276 277 277 void FixedFunctionTechnique::traverse(osg::NodeVisitor& nv) 278 278 { 279 // osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::traverse(osg::NodeVisitor& nv)"<<std::endl;279 // OSG_NOTICE<<"FixedFunctionTechnique::traverse(osg::NodeVisitor& nv)"<<std::endl; 280 280 if (!_volumeTile) return; 281 281 … … 306 306 if (_volumeTile->getDirty()) 307 307 { 308 osg::notify(osg::INFO)<<"******* Doing init ***********"<<std::endl;308 OSG_INFO<<"******* Doing init ***********"<<std::endl; 309 309 _volumeTile->init(); 310 310 }
