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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-01-07 09:47:58 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-07 09:47:58 +0300
commit02739bd051744b83aa90097a76d9abf13abac2ca (patch)
treeac89ed10d3875ada803bbab979c4adaaa5ca1c0b /intern/cycles/device/device.cpp
parent9f2d33a6524d40c1e01a3fec8dab276094bf9940 (diff)
Cycles: Cleanup, use "string_" prefix for functions in util_string
No functional changes, just makes it easier to track where the function is coming from.
Diffstat (limited to 'intern/cycles/device/device.cpp')
-rw-r--r--intern/cycles/device/device.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/cycles/device/device.cpp b/intern/cycles/device/device.cpp
index f3fd462d4c1..929f810eaa1 100644
--- a/intern/cycles/device/device.cpp
+++ b/intern/cycles/device/device.cpp
@@ -44,13 +44,13 @@ std::ostream& operator <<(std::ostream &os,
/* TODO(sergey): Decode bitflag into list of names. */
os << "Nodes features: " << requested_features.nodes_features << std::endl;
os << "Use hair: "
- << bool_to_string(requested_features.use_hair) << std::endl;
+ << string_from_bool(requested_features.use_hair) << std::endl;
os << "Use object motion: "
- << bool_to_string(requested_features.use_object_motion) << std::endl;
+ << string_from_bool(requested_features.use_object_motion) << std::endl;
os << "Use camera motion: "
- << bool_to_string(requested_features.use_camera_motion) << std::endl;
+ << string_from_bool(requested_features.use_camera_motion) << std::endl;
os << "Use Baking: "
- << bool_to_string(requested_features.use_baking) << std::endl;
+ << string_from_bool(requested_features.use_baking) << std::endl;
return os;
}