]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/util/StateAttributeFactory.cxx
Work around apparent OSG 3.2.0 normal binding bug.
[simgear.git] / simgear / scene / util / StateAttributeFactory.cxx
index 5232511769a2b6cd1cccd093a99e9598d3c67251..5b52ed648224e368d0a8f69a5b7641adcea7afd7 100644 (file)
@@ -32,6 +32,8 @@
 
 #include <osg/Image>
 
+#include <simgear/debug/logstream.hxx>
+
 #include "Noise.hxx"
 
 using namespace osg;
@@ -107,7 +109,7 @@ osg::Image* make3DNoiseImage(int texSize)
     GLubyte *ptr;
     double amp = 0.5;
 
-    osg::notify(osg::WARN) << "creating 3D noise texture... ";
+    SG_LOG(SG_TERRAIN, SG_BULK, "creating 3D noise texture... ");
 
     for (f = 0, inc = 0; f < numOctaves; ++f, frequency *= 2, ++inc, amp *= 0.5)
     {
@@ -130,7 +132,8 @@ osg::Image* make3DNoiseImage(int texSize)
         }
     }
 
-    osg::notify(osg::WARN) << "DONE" << std::endl;
+    SG_LOG(SG_TERRAIN, SG_BULK, "DONE");
+
     return image;
 }