Changeset 11472 for OpenSceneGraph/trunk/src/osg/StateAttribute.cpp
- Timestamp:
- 05/28/10 17:47:52 (3 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osg/StateAttribute.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osg/StateAttribute.cpp
r10671 r11472 28 28 void StateAttribute::addParent(osg::StateSet* object) 29 29 { 30 osg::notify(osg::DEBUG_FP)<<"Adding parent"<<getRefMutex()<<std::endl;30 OSG_DEBUG_FP<<"Adding parent"<<getRefMutex()<<std::endl; 31 31 OpenThreads::ScopedPointerLock<OpenThreads::Mutex> lock(getRefMutex()); 32 32 … … 45 45 void StateAttribute::setUpdateCallback(StateAttributeCallback* uc) 46 46 { 47 osg::notify(osg::INFO)<<"StateAttribute::Setting Update callbacks"<<std::endl;47 OSG_INFO<<"StateAttribute::Setting Update callbacks"<<std::endl; 48 48 49 49 if (_updateCallback==uc) return; … … 57 57 if (delta!=0) 58 58 { 59 osg::notify(osg::INFO)<<"Going to set StateAttribute parents"<<std::endl;59 OSG_INFO<<"Going to set StateAttribute parents"<<std::endl; 60 60 61 61 for(ParentList::iterator itr=_parents.begin(); … … 63 63 ++itr) 64 64 { 65 osg::notify(osg::INFO)<<" Setting StateAttribute parent"<<std::endl;65 OSG_INFO<<" Setting StateAttribute parent"<<std::endl; 66 66 67 67 (*itr)->setNumChildrenRequiringUpdateTraversal((*itr)->getNumChildrenRequiringUpdateTraversal()+delta); … … 72 72 void StateAttribute::setEventCallback(StateAttributeCallback* ec) 73 73 { 74 osg::notify(osg::INFO)<<"StateAttribute::Setting Event callbacks"<<std::endl;74 OSG_INFO<<"StateAttribute::Setting Event callbacks"<<std::endl; 75 75 76 76 if (_eventCallback==ec) return;
