When this works correctly, we should be able to feed in an existing depsgraph instance, and get out a "filtered" copy of it that contains only the subset of nodes needed to evaluate what we're interested in. The current implementation only filters on ID blocks/nodes, and starts by building a full new depsgraph instance first. I'd originally intended to do it per operation instead, copying over individual nodes as appropriate to have the smallest and least memory intensive graph possible. However, I ended up running into into problems with function binding + COW arguments, hence the current slow solution.
118 lines
3.3 KiB
CMake
118 lines
3.3 KiB
CMake
# ***** 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) 2014, Blender Foundation
|
|
# All rights reserved.
|
|
#
|
|
# The Original Code is: all of this file.
|
|
#
|
|
# Contributor(s): Joshua Leung, Lukas Toenne
|
|
#
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
set(INC
|
|
.
|
|
../blenkernel
|
|
../blenlib
|
|
../bmesh
|
|
../draw
|
|
../makesdna
|
|
../makesrna
|
|
../modifiers
|
|
../windowmanager
|
|
../../../intern/atomic
|
|
../../../intern/guardedalloc
|
|
)
|
|
|
|
set(INC_SYS
|
|
)
|
|
|
|
set(SRC
|
|
intern/builder/deg_builder.cc
|
|
intern/builder/deg_builder_cycle.cc
|
|
intern/builder/deg_builder_map.cc
|
|
intern/builder/deg_builder_nodes.cc
|
|
intern/builder/deg_builder_nodes_rig.cc
|
|
intern/builder/deg_builder_nodes_view_layer.cc
|
|
intern/builder/deg_builder_pchanmap.cc
|
|
intern/builder/deg_builder_relations.cc
|
|
intern/builder/deg_builder_relations_keys.cc
|
|
intern/builder/deg_builder_relations_rig.cc
|
|
intern/builder/deg_builder_relations_view_layer.cc
|
|
intern/builder/deg_builder_transitive.cc
|
|
intern/debug/deg_debug_relations_graphviz.cc
|
|
intern/debug/deg_debug_stats_gnuplot.cc
|
|
intern/eval/deg_eval.cc
|
|
intern/eval/deg_eval_copy_on_write.cc
|
|
intern/eval/deg_eval_flush.cc
|
|
intern/eval/deg_eval_stats.cc
|
|
intern/nodes/deg_node.cc
|
|
intern/nodes/deg_node_component.cc
|
|
intern/nodes/deg_node_id.cc
|
|
intern/nodes/deg_node_operation.cc
|
|
intern/nodes/deg_node_time.cc
|
|
intern/depsgraph.cc
|
|
intern/depsgraph_build.cc
|
|
intern/depsgraph_debug.cc
|
|
intern/depsgraph_eval.cc
|
|
intern/depsgraph_physics.cc
|
|
intern/depsgraph_query.cc
|
|
intern/depsgraph_query_filter.cc
|
|
intern/depsgraph_query_foreach.cc
|
|
intern/depsgraph_query_iter.cc
|
|
intern/depsgraph_tag.cc
|
|
intern/depsgraph_type_defines.cc
|
|
|
|
DEG_depsgraph.h
|
|
DEG_depsgraph_build.h
|
|
DEG_depsgraph_debug.h
|
|
DEG_depsgraph_physics.h
|
|
DEG_depsgraph_query.h
|
|
|
|
intern/builder/deg_builder.h
|
|
intern/builder/deg_builder_cycle.h
|
|
intern/builder/deg_builder_map.h
|
|
intern/builder/deg_builder_nodes.h
|
|
intern/builder/deg_builder_pchanmap.h
|
|
intern/builder/deg_builder_relations.h
|
|
intern/builder/deg_builder_relations_impl.h
|
|
intern/builder/deg_builder_transitive.h
|
|
intern/eval/deg_eval.h
|
|
intern/eval/deg_eval_copy_on_write.h
|
|
intern/eval/deg_eval_flush.h
|
|
intern/eval/deg_eval_stats.h
|
|
intern/nodes/deg_node.h
|
|
intern/nodes/deg_node_component.h
|
|
intern/nodes/deg_node_id.h
|
|
intern/nodes/deg_node_operation.h
|
|
intern/nodes/deg_node_time.h
|
|
intern/depsgraph.h
|
|
intern/depsgraph_intern.h
|
|
intern/depsgraph_types.h
|
|
|
|
util/deg_util_foreach.h
|
|
util/deg_util_function.h
|
|
)
|
|
|
|
if(WITH_BOOST)
|
|
list(APPEND INC_SYS
|
|
${BOOST_INCLUDE_DIR}
|
|
)
|
|
add_definitions(-DHAVE_BOOST_FUNCTION_BINDINGS)
|
|
endif()
|
|
|
|
blender_add_lib(bf_depsgraph "${SRC}" "${INC}" "${INC_SYS}")
|