Converted osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield
2010-05-28 16:48:31 +00:00
parent 5bf2b5cc90
commit 528e5eed45
2 changed files with 2 additions and 2 deletions

View File

@@ -166,7 +166,7 @@ void Normals::MakeNormalsVisitor::apply( Geode &geode )
if (dal) {
for (unsigned int j = 0; j < dal->size(); ++j) {
unsigned int num_prim = (*dal)[j];
//notify(WARN) << "j=" << j << " num_prim=" << num_prim << std::endl;
//OSG_WARN << "j=" << j << " num_prim=" << num_prim << std::endl;
_processPrimitive(num_prim, coord_index, normals_index, binding);
coord_index += num_prim;
if (binding == Geometry::BIND_PER_PRIMITIVE) {

View File

@@ -99,7 +99,7 @@ class NormalsReader: public osgDB::ReaderWriter
private:
void usage() const {
osg::notify( osg::INFO ) <<
OSG_INFO <<
"Normals Plugin usage: <application> [-O options] <model.ext>.normals\n"
" options: \"scale=<scale>\" (default = 1.0)\n"
" \"mode=<VertexNormals|SurfaceNormals>\" (default = VertexNormals)" << std::endl;