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>2018-07-06 11:16:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-06 11:16:28 +0300
commit6d38d824377c55aaaed7e8283e81a7128bf6f728 (patch)
treed20611e9fde98a12c6a01dc38216ea13d8403b2b
parentaff8b0239427a48707a17e347ca681c9a37dc32e (diff)
Cycles: missed when renaming updated RNA
-rw-r--r--intern/cycles/blender/blender_sync.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/blender/blender_sync.cpp b/intern/cycles/blender/blender_sync.cpp
index 80aa68d9756..b449302241d 100644
--- a/intern/cycles/blender/blender_sync.cpp
+++ b/intern/cycles/blender/blender_sync.cpp
@@ -121,9 +121,9 @@ void BlenderSync::sync_recalc(BL::Depsgraph& b_depsgraph)
/* Object */
else if (b_id.is_a(&RNA_Object)) {
BL::Object b_ob(b_id);
- const bool updated_geometry = b_update->updated_geometry();
+ const bool updated_geometry = !b_update->is_dirty_geometry();
- if (b_update->updated_transform()) {
+ if (!b_update->is_dirty_transform()) {
object_map.set_recalc(b_ob);
light_map.set_recalc(b_ob);
}