This includes: - Skip OB_RECALC_TIME tag from object duplicate operator not sure why it is needed: even if original object was animated, duplicating it will copy evaluated values. - Don't tag whole ID for update when updating it after relations rebuilt. Use the same trickery to detect whether animation is to be re-evaluated or not as is done for update flag=0. - Don't tag datablocks which are expanded for update of copy-on-write. - Avoid flush along relation from copy-on-write operation in action. This will not invalidate any pointers in the copied datablock since we don't reference anything in the action.
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
/*
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* The Original Code is Copyright (C) 2016 Blender Foundation.
|
|
* All rights reserved.
|
|
*
|
|
* Original Author: Sergey Sharybin
|
|
* Contributor(s): None Yet
|
|
*
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
*/
|
|
|
|
/** \file blender/depsgraph/intern/builder/deg_builder.cc
|
|
* \ingroup depsgraph
|
|
*/
|
|
|
|
#include "intern/builder/deg_builder.h"
|
|
|
|
#include "DNA_object_types.h"
|
|
#include "DNA_ID.h"
|
|
|
|
#include "intern/depsgraph.h"
|
|
#include "intern/depsgraph_types.h"
|
|
#include "intern/eval/deg_eval_copy_on_write.h"
|
|
#include "intern/nodes/deg_node.h"
|
|
#include "intern/nodes/deg_node_id.h"
|
|
|
|
#include "util/deg_util_foreach.h"
|
|
|
|
#include "DEG_depsgraph.h"
|
|
|
|
namespace DEG {
|
|
|
|
void deg_graph_build_finalize(Main *bmain, Depsgraph *graph)
|
|
{
|
|
/* Re-tag IDs for update if it was tagged before the relations
|
|
* update tag.
|
|
*/
|
|
foreach (IDDepsNode *id_node, graph->id_nodes) {
|
|
ID *id = id_node->id_orig;
|
|
id_node->finalize_build(graph);
|
|
if ((id->recalc & ID_RECALC_ALL)) {
|
|
DEG_id_tag_update_ex(bmain, id_node->id_orig, 0);
|
|
}
|
|
if (!deg_copy_on_write_is_expanded(id_node->id_cow)) {
|
|
DEG_id_tag_update_ex(bmain, id_node->id_orig, DEG_TAG_COPY_ON_WRITE);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace DEG
|