Converted osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield
2010-05-28 17:11:35 +00:00
parent 56ec2bbabf
commit 959dfbf874

View File

@@ -89,7 +89,7 @@ class LibVncImage : public osgWidget::VncImage
if(i)
{
osg::notify(osg::NOTICE)<<"Handling "<<i<<" messages"<<std::endl;
OSG_NOTICE<<"Handling "<<i<<" messages"<<std::endl;
if(!HandleRFBServerMessage(_client))
return;
@@ -106,7 +106,7 @@ class LibVncImage : public osgWidget::VncImage
double deltaTime = _image->getTimeOfLastRender() - _image->getTimeOfLastUpdate();
if (deltaTime<-0.01)
{
//osg::notify(osg::NOTICE)<<"Inactive"<<std::endl;
//OSG_NOTICE<<"Inactive"<<std::endl;
//_image->_active = false;
}
else
@@ -264,7 +264,7 @@ rfbBool LibVncImage::resizeImage(rfbClient* client)
int height=client->height;
int depth=client->format.bitsPerPixel;
osg::notify(osg::NOTICE)<<"resize "<<width<<", "<<height<<", "<<depth<<" image = "<<image<<std::endl;
OSG_NOTICE<<"resize "<<width<<", "<<height<<", "<<depth<<" image = "<<image<<std::endl;
image->allocateImage(width,height,1,GL_RGBA,GL_UNSIGNED_BYTE);
@@ -338,7 +338,7 @@ class ReaderWriterVNC : public osgDB::ReaderWriter
std::string hostname = osgDB::getNameLessExtension(fileName);
osg::notify(osg::NOTICE)<<"Hostname = "<<hostname<<std::endl;
OSG_NOTICE<<"Hostname = "<<hostname<<std::endl;
osg::ref_ptr<LibVncImage> image = new LibVncImage;
image->setDataVariance(osg::Object::DYNAMIC);