Convesion of osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield
2010-05-28 15:47:52 +00:00
parent e753be1b20
commit a79a8d30f9
67 changed files with 775 additions and 785 deletions

View File

@@ -95,7 +95,7 @@ void Point::apply(State& state) const
extensions->glPointParameterf(GL_POINT_SIZE_MIN, _minSize);
extensions->glPointParameterf(GL_POINT_SIZE_MAX, _maxSize);
#else
osg::notify(osg::NOTICE)<<"Warning: Point::apply(State&) - not supported."<<std::endl;
OSG_NOTICE<<"Warning: Point::apply(State&) - not supported."<<std::endl;
#endif
}
@@ -166,7 +166,7 @@ void Point::Extensions::glPointParameteri(GLenum pname, GLint param) const
}
else
{
notify(WARN)<<"Error: glPointParameteri not supported by OpenGL driver"<<std::endl;
OSG_WARN<<"Error: glPointParameteri not supported by OpenGL driver"<<std::endl;
}
}
@@ -178,7 +178,7 @@ void Point::Extensions::glPointParameterf(GLenum pname, GLfloat param) const
}
else
{
notify(WARN)<<"Error: glPointParameterf not supported by OpenGL driver"<<std::endl;
OSG_WARN<<"Error: glPointParameterf not supported by OpenGL driver"<<std::endl;
}
}
@@ -190,6 +190,6 @@ void Point::Extensions::glPointParameterfv(GLenum pname, const GLfloat *params)
}
else
{
notify(WARN)<<"Error: glPointParameterfv not supported by OpenGL driver"<<std::endl;
OSG_WARN<<"Error: glPointParameterfv not supported by OpenGL driver"<<std::endl;
}
}