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:
authorCampbell Barton <ideasman42@gmail.com>2014-05-03 21:49:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-03 21:57:50 +0400
commit1618329b005beca2dfbe413a4eef661a83ad15a1 (patch)
treea4a3ec6d36770d24ffdb9a893d8dc3186a493c5f /intern/cycles/app
parent95d885b3f431284b2e1eb8640771cab00b201437 (diff)
Code cleanup: style, require ; for cuda_assert, opencl_assert
Diffstat (limited to 'intern/cycles/app')
-rw-r--r--intern/cycles/app/cycles_standalone.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/intern/cycles/app/cycles_standalone.cpp b/intern/cycles/app/cycles_standalone.cpp
index 074d6404f07..9871273381e 100644
--- a/intern/cycles/app/cycles_standalone.cpp
+++ b/intern/cycles/app/cycles_standalone.cpp
@@ -177,8 +177,14 @@ static void display_info(Progress& progress)
interactive = options.interactive? "On":"Off";
- str = string_printf("%s Time: %.2f Latency: %.4f Sample: %d Average: %.4f Interactive: %s",
- status.c_str(), total_time, latency, sample, sample_time, interactive.c_str());
+ str = string_printf(
+ "%s"
+ " Time: %.2f"
+ " Latency: %.4f"
+ " Sample: %d"
+ " Average: %.4f"
+ " Interactive: %s",
+ status.c_str(), total_time, latency, sample, sample_time, interactive.c_str());
view_display_info(str.c_str());