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:
Diffstat (limited to 'intern/cycles/device/device.cpp')
-rw-r--r--intern/cycles/device/device.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/intern/cycles/device/device.cpp b/intern/cycles/device/device.cpp
index fc9959e0b48..f3fd462d4c1 100644
--- a/intern/cycles/device/device.cpp
+++ b/intern/cycles/device/device.cpp
@@ -28,6 +28,7 @@
#include "util_time.h"
#include "util_types.h"
#include "util_vector.h"
+#include "util_string.h"
CCL_NAMESPACE_BEGIN
@@ -42,15 +43,14 @@ std::ostream& operator <<(std::ostream &os,
os << "Max nodes group: " << requested_features.max_nodes_group << std::endl;
/* TODO(sergey): Decode bitflag into list of names. */
os << "Nodes features: " << requested_features.nodes_features << std::endl;
- /* TODO(sergey): Make it utility function to convert bool to string. */
os << "Use hair: "
- << (requested_features.use_hair ? "True" : "False") << std::endl;
+ << bool_to_string(requested_features.use_hair) << std::endl;
os << "Use object motion: "
- << (requested_features.use_object_motion ? "True" : "False") << std::endl;
+ << bool_to_string(requested_features.use_object_motion) << std::endl;
os << "Use camera motion: "
- << (requested_features.use_camera_motion ? "True" : "False") << std::endl;
+ << bool_to_string(requested_features.use_camera_motion) << std::endl;
os << "Use Baking: "
- << (requested_features.use_baking ? "True" : "False") << std::endl;
+ << bool_to_string(requested_features.use_baking) << std::endl;
return os;
}