Changed cout's to notufy(INFO).

This commit is contained in:
Robert Osfield
2003-08-15 09:38:36 +00:00
parent 4b7bde1440
commit 282eb39ec5
2 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ void Drawable::flushDeletedDisplayLists(unsigned int contextID,double /*currentT
}
}
if (noDeleted!=0) std::cout<<"Number display lists deleted = "<<noDeleted<<std::endl;
if (noDeleted!=0) notify(INFO)<<"Number display lists deleted = "<<noDeleted<<std::endl;
availableTime -= elapsedTime;
}

View File

@@ -69,7 +69,7 @@ Texture::TextureObject* Texture::TextureObjectManager::reuseTextureObject(unsign
Texture::TextureObject* textureObject = (*itr).release();
tol.erase(itr);
//std::cout<<"reusing texture object "<<textureObject<<std::endl;
//notify(INFO)<<"reusing texture object "<<textureObject<<std::endl;
return textureObject;
}
@@ -283,7 +283,7 @@ void Texture::takeTextureObjects(Texture::TextureObjectListMap& toblm)
{
if (_textureObjectBuffer[i].valid())
{
//std::cout << "releasing texure "<<toblm[i].size()<<std::endl;
//notify(INFO) << "releasing texure "<<toblm[i].size()<<std::endl;
toblm[i].push_back(_textureObjectBuffer[i]);
}
}