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:
authorThomas Dinges <blender@dingto.org>2016-05-17 01:36:22 +0300
committerThomas Dinges <blender@dingto.org>2016-05-17 01:36:22 +0300
commit99d861169f8c9ebee236ddde6dbf27866d7acb64 (patch)
treea1e6760ddf8873197e1ee21c68a7e171950be84d
parentb90cc984f7bbc06944a9cf59913fbb14127ac8fc (diff)
Cycles / Requested Features: Volume was missing in logging print.
-rw-r--r--intern/cycles/device/device.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/cycles/device/device.cpp b/intern/cycles/device/device.cpp
index 8c01bcb116f..df01215c91a 100644
--- a/intern/cycles/device/device.cpp
+++ b/intern/cycles/device/device.cpp
@@ -56,6 +56,8 @@ std::ostream& operator <<(std::ostream &os,
<< string_from_bool(requested_features.use_camera_motion) << std::endl;
os << "Use Baking: "
<< string_from_bool(requested_features.use_baking) << std::endl;
+ os << "Use Volume: "
+ << string_from_bool(requested_features.use_volume) << std::endl;
return os;
}