From 528e5eed452566084b37acfe08a36a77c80cb7aa Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 28 May 2010 16:48:31 +0000 Subject: [PATCH] Converted osg::notify to OSG_INFO etc. --- src/osgPlugins/normals/Normals.cpp | 2 +- src/osgPlugins/normals/ReaderWriterNormals.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/normals/Normals.cpp b/src/osgPlugins/normals/Normals.cpp index 6c04e44e2..63fbd3142 100644 --- a/src/osgPlugins/normals/Normals.cpp +++ b/src/osgPlugins/normals/Normals.cpp @@ -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) { diff --git a/src/osgPlugins/normals/ReaderWriterNormals.cpp b/src/osgPlugins/normals/ReaderWriterNormals.cpp index b585f938d..aaa6ef1a1 100644 --- a/src/osgPlugins/normals/ReaderWriterNormals.cpp +++ b/src/osgPlugins/normals/ReaderWriterNormals.cpp @@ -99,7 +99,7 @@ class NormalsReader: public osgDB::ReaderWriter private: void usage() const { - osg::notify( osg::INFO ) << + OSG_INFO << "Normals Plugin usage: [-O options] .normals\n" " options: \"scale=\" (default = 1.0)\n" " \"mode=\" (default = VertexNormals)" << std::endl;