Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_relations.h
| Show All 17 Lines | |||||
| #include "RNA_types.h" | #include "RNA_types.h" | ||||
| #include "BLI_string.h" | #include "BLI_string.h" | ||||
| #include "BLI_utildefines.h" | #include "BLI_utildefines.h" | ||||
| #include "intern/builder/deg_builder.h" | #include "intern/builder/deg_builder.h" | ||||
| #include "intern/builder/deg_builder_map.h" | #include "intern/builder/deg_builder_map.h" | ||||
| #include "intern/builder/deg_builder_rna.h" | #include "intern/builder/deg_builder_rna.h" | ||||
| #include "intern/builder/deg_builder_stack.h" | |||||
| #include "intern/depsgraph.h" | #include "intern/depsgraph.h" | ||||
| #include "intern/node/deg_node.h" | #include "intern/node/deg_node.h" | ||||
| #include "intern/node/deg_node_component.h" | #include "intern/node/deg_node_component.h" | ||||
| #include "intern/node/deg_node_id.h" | #include "intern/node/deg_node_id.h" | ||||
| #include "intern/node/deg_node_operation.h" | #include "intern/node/deg_node_operation.h" | ||||
| struct CacheFile; | struct CacheFile; | ||||
| struct Camera; | struct Camera; | ||||
| ▲ Show 20 Lines • Show All 324 Lines • ▼ Show 20 Lines | private: | ||||
| static void constraint_walk(bConstraint *con, ID **idpoin, bool is_reference, void *user_data); | static void constraint_walk(bConstraint *con, ID **idpoin, bool is_reference, void *user_data); | ||||
| /* State which demotes currently built entities. */ | /* State which demotes currently built entities. */ | ||||
| Scene *scene_; | Scene *scene_; | ||||
| BuilderMap built_map_; | BuilderMap built_map_; | ||||
| RNANodeQuery rna_node_query_; | RNANodeQuery rna_node_query_; | ||||
| BuilderStack stack_; | |||||
| }; | }; | ||||
| struct DepsNodeHandle { | struct DepsNodeHandle { | ||||
| DepsNodeHandle(DepsgraphRelationBuilder *builder, | DepsNodeHandle(DepsgraphRelationBuilder *builder, | ||||
| OperationNode *node, | OperationNode *node, | ||||
| const char *default_name = "") | const char *default_name = "") | ||||
| : builder(builder), node(node), default_name(default_name) | : builder(builder), node(node), default_name(default_name) | ||||
| { | { | ||||
| Show All 12 Lines | |||||