[Bf-blender-cvs] [6a5e92c0222] master: Cleanup: Use upper case consistently in adaptive feature compile logging.

Thomas Dinges noreply at git.blender.org
Mon Mar 27 22:53:09 CEST 2017


Commit: 6a5e92c0222bddae71ec786f40c5c8618df4aae4
Author: Thomas Dinges
Date:   Mon Mar 27 22:52:33 2017 +0200
Branches: master
https://developer.blender.org/rB6a5e92c0222bddae71ec786f40c5c8618df4aae4

Cleanup: Use upper case consistently in adaptive feature compile logging.

===================================================================

M	intern/cycles/device/device.cpp

===================================================================

diff --git a/intern/cycles/device/device.cpp b/intern/cycles/device/device.cpp
index 6b07b9d04bd..21eb3379694 100644
--- a/intern/cycles/device/device.cpp
+++ b/intern/cycles/device/device.cpp
@@ -48,11 +48,11 @@ 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;
-	os << "Use hair: "
+	os << "Use Hair: "
 	   << string_from_bool(requested_features.use_hair) << std::endl;
-	os << "Use object motion: "
+	os << "Use Object Motion: "
 	   << string_from_bool(requested_features.use_object_motion) << std::endl;
-	os << "Use camera motion: "
+	os << "Use Camera Motion: "
 	   << string_from_bool(requested_features.use_camera_motion) << std::endl;
 	os << "Use Baking: "
 	   << string_from_bool(requested_features.use_baking) << std::endl;




More information about the Bf-blender-cvs mailing list