Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2014-04-17 16:39:13 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-04-17 16:51:38 +0400
commitd0e80b50e92d6c4099f7c4839cf587199d01498c (patch)
tree73974d4a2b75890233962cf27e807ed14f3eded0
parentd02522b7be5ba62dd1a23e9607d0ef63471aad0f (diff)
Fix another Freestyle building glitch.
-rw-r--r--source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp b/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp
index e1eebd8b069..ee885f29211 100644
--- a/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp
+++ b/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp
@@ -298,11 +298,11 @@ iter:
}
#if 0
if (G.debug & G_DEBUG_FREESTYLE) {
- printf("SilhouetteGeomEngine::ImageToWorldParameter(): #iters = %d, dist = %e\n", i, dist);
+ cout << "SilhouetteGeomEngine::ImageToWorldParameter(): #iters = " << i << ", dist = " << dist << "\n";
}
#endif
if (i == max_iters && G.debug & G_DEBUG_FREESTYLE) {
- printf("SilhouetteGeomEngine::ImageToWorldParameter(): reached to max_iters (dist = %e)\n", dist);
+ cout << "SilhouetteGeomEngine::ImageToWorldParameter(): reached to max_iters (dist = " << dist << ")\n";
}
}