[Bf-blender-cvs] [c9ad9b260ad] blender2.8: Depsgraph: Pass CoW version of object to armature update done

Sergey Sharybin noreply at git.blender.org
Wed Apr 4 11:47:40 CEST 2018


Commit: c9ad9b260ad014de90b6f4c16af87c274fc951fb
Author: Sergey Sharybin
Date:   Wed Apr 4 11:47:09 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBc9ad9b260ad014de90b6f4c16af87c274fc951fb

Depsgraph: Pass CoW version of object to armature update done

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

M	source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc

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

diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc b/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
index 328d23a2ced..6a7f9eaea25 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
@@ -267,7 +267,7 @@ void DepsgraphNodeBuilder::build_rig(Object *object)
 		op_node = add_operation_node(&object->id, DEG_NODE_TYPE_BONE, pchan->name,
 		                             function_bind(BKE_pose_bone_done,
 		                                           _1,
-		                                           object,
+		                                           object_cow,
 		                                           pchan_index),
 		                             DEG_OPCODE_BONE_DONE);
 		op_node->set_as_exit();



More information about the Bf-blender-cvs mailing list