Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_relations.h
| Show First 20 Lines • Show All 59 Lines • ▼ Show 20 Lines | |||||
| struct MTex; | struct MTex; | ||||
| struct ModifierData; | struct ModifierData; | ||||
| struct MovieClip; | struct MovieClip; | ||||
| struct bNodeTree; | struct bNodeTree; | ||||
| struct Object; | struct Object; | ||||
| struct bPoseChannel; | struct bPoseChannel; | ||||
| struct bConstraint; | struct bConstraint; | ||||
| struct Scene; | struct Scene; | ||||
| struct SceneLayer; | struct ViewLayer; | ||||
| struct Tex; | struct Tex; | ||||
| struct World; | struct World; | ||||
| struct EffectorWeights; | struct EffectorWeights; | ||||
| struct ParticleSystem; | struct ParticleSystem; | ||||
| struct ParticleSettings; | struct ParticleSettings; | ||||
| struct PropertyRNA; | struct PropertyRNA; | ||||
| ▲ Show 20 Lines • Show All 104 Lines • ▼ Show 20 Lines | void add_relation(const TimeSourceKey& key_from, | ||||
| const KeyTo& key_to, | const KeyTo& key_to, | ||||
| const char *description); | const char *description); | ||||
| template <typename KeyType> | template <typename KeyType> | ||||
| void add_node_handle_relation(const KeyType& key_from, | void add_node_handle_relation(const KeyType& key_from, | ||||
| const DepsNodeHandle *handle, | const DepsNodeHandle *handle, | ||||
| const char *description); | const char *description); | ||||
| void build_scene_layer(Scene *scene, SceneLayer *scene_layer); | void build_view_layer(Scene *scene, ViewLayer *view_layer); | ||||
| void build_group(Object *object, Group *group); | void build_group(Object *object, Group *group); | ||||
| void build_object(Object *ob); | void build_object(Object *ob); | ||||
| void build_object_parent(Object *ob); | void build_object_parent(Object *ob); | ||||
| void build_constraints(ID *id, | void build_constraints(ID *id, | ||||
| eDepsNode_Type component_type, | eDepsNode_Type component_type, | ||||
| const char *component_subdata, | const char *component_subdata, | ||||
| ListBase *constraints, | ListBase *constraints, | ||||
| RootPChanMap *root_map); | RootPChanMap *root_map); | ||||
| ▲ Show 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | struct LayerCollectionState { | ||||
| OperationKey init_key; | OperationKey init_key; | ||||
| OperationKey done_key; | OperationKey done_key; | ||||
| OperationKey prev_key; | OperationKey prev_key; | ||||
| }; | }; | ||||
| void build_layer_collection(LayerCollection *layer_collection, | void build_layer_collection(LayerCollection *layer_collection, | ||||
| LayerCollectionState *state); | LayerCollectionState *state); | ||||
| void build_layer_collections(ListBase *layer_collections, | void build_layer_collections(ListBase *layer_collections, | ||||
| LayerCollectionState *state); | LayerCollectionState *state); | ||||
| void build_scene_layer_collections(SceneLayer *scene_layer); | void build_view_layer_collections(ViewLayer *view_layer); | ||||
| void build_copy_on_write_relations(); | void build_copy_on_write_relations(); | ||||
| void build_copy_on_write_relations(IDDepsNode *id_node); | void build_copy_on_write_relations(IDDepsNode *id_node); | ||||
| template <typename KeyType> | template <typename KeyType> | ||||
| OperationDepsNode *find_operation_node(const KeyType &key); | OperationDepsNode *find_operation_node(const KeyType &key); | ||||
| Depsgraph *getGraph(); | Depsgraph *getGraph(); | ||||
| ▲ Show 20 Lines • Show All 137 Lines • Show Last 20 Lines | |||||