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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-12-11 01:06:27 +0300
committerMaxime Curioni <maxime.curioni@gmail.com>2008-12-11 01:06:27 +0300
commit2f460b448b29f17e9c1f6aca15eaf1387a3bfd67 (patch)
treec5103eb2e0f911b636c9583b43effca2bb2df8d7 /source/blender/freestyle/intern/app_blender/api.cpp
parentd15321082e12385161afe8c7f364ec535dd5ce95 (diff)
improved Freestyle IO formatting
Diffstat (limited to 'source/blender/freestyle/intern/app_blender/api.cpp')
-rw-r--r--source/blender/freestyle/intern/app_blender/api.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/app_blender/api.cpp b/source/blender/freestyle/intern/app_blender/api.cpp
index 95045cccfdd..233fe26a38d 100644
--- a/source/blender/freestyle/intern/app_blender/api.cpp
+++ b/source/blender/freestyle/intern/app_blender/api.cpp
@@ -150,16 +150,17 @@ extern "C" {
void FRS_render_Blender(Render* re) {
if( controller->_ViewMap ) {
+ cout << "\n=== Rendering Freestyle with Blender's internal renderer ===" << endl;
+
// build strokes
controller->DrawStrokes();
-
- cout << "\n=== Rendering Freestyle with Blender's internal renderer ===" << endl;
+
controller->RenderBlender(re);
controller->CloseFile();
} else {
cout << "Freestyle cannot be used because the view map is not available" << endl;
}
- cout << "###################################################################" << endl;
+ cout << "\n###################################################################" << endl;
}
#ifdef __cplusplus