Quietened down debug messages

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@15134 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield 2015-09-24 10:48:57 +00:00
parent 80e5338194
commit 57d0538f1e

View File

@ -130,7 +130,7 @@ public:
availableTime -= elapsedTime; availableTime -= elapsedTime;
#else #else
OSG_NOTICE<<"Warning: Drawable::flushDeletedDisplayLists(..) - not supported."<<std::endl; OSG_INFO<<"Warning: Drawable::flushDeletedDisplayLists(..) - not supported."<<std::endl;
#endif #endif
} }
@ -138,8 +138,6 @@ public:
{ {
#ifdef OSG_GL_DISPLAYLISTS_AVAILABLE #ifdef OSG_GL_DISPLAYLISTS_AVAILABLE
OSG_NOTICE<<"void DisplayListManager::flushAllDeletedGLObjects()"<<std::endl;
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex_deletedDisplayListCache); OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex_deletedDisplayListCache);
for(DisplayListMap::iterator ditr=_displayListMap.begin(); for(DisplayListMap::iterator ditr=_displayListMap.begin();
@ -151,19 +149,17 @@ public:
_displayListMap.clear(); _displayListMap.clear();
#else #else
OSG_NOTICE<<"Warning: Drawable::deleteDisplayList(..) - not supported."<<std::endl; OSG_INFO<<"Warning: Drawable::deleteDisplayList(..) - not supported."<<std::endl;
#endif #endif
} }
virtual void deleteAllGLObjects() virtual void deleteAllGLObjects()
{ {
OSG_NOTICE<<"DisplayListManager::deleteAllGLObjects() Not currently implementated"<<std::endl; OSG_INFO<<"DisplayListManager::deleteAllGLObjects() Not currently implementated"<<std::endl;
} }
virtual void discardAllGLObjects() virtual void discardAllGLObjects()
{ {
OSG_NOTICE<<"void DisplayListManager::discardAllGLObjects()"<<std::endl;
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex_deletedDisplayListCache); OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex_deletedDisplayListCache);
_displayListMap.clear(); _displayListMap.clear();
} }
@ -179,7 +175,7 @@ public:
_displayListMap.insert(DisplayListMap::value_type(sizeHint,globj)); _displayListMap.insert(DisplayListMap::value_type(sizeHint,globj));
} }
#else #else
OSG_NOTICE<<"Warning: Drawable::deleteDisplayList(..) - not supported."<<std::endl; OSG_INFO<<"Warning: Drawable::deleteDisplayList(..) - not supported."<<std::endl;
#endif #endif
} }
@ -215,7 +211,7 @@ public:
} }
} }
#else #else
OSG_NOTICE<<"Warning: Drawable::generateDisplayList(..) - not supported."<<std::endl; OSG_INFO<<"Warning: Drawable::generateDisplayList(..) - not supported."<<std::endl;
return 0; return 0;
#endif #endif
} }