Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_nodes.h
| Show All 37 Lines | |||||
| struct Base; | struct Base; | ||||
| struct CacheFile; | struct CacheFile; | ||||
| struct bGPdata; | struct bGPdata; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct GHash; | struct GHash; | ||||
| struct ID; | struct ID; | ||||
| struct Image; | struct Image; | ||||
| struct FCurve; | struct FCurve; | ||||
| struct Group; | struct Collection; | ||||
| struct Key; | struct Key; | ||||
| struct LayerCollection; | struct LayerCollection; | ||||
| struct Main; | struct Main; | ||||
| struct Material; | struct Material; | ||||
| struct Mask; | struct Mask; | ||||
| struct MTex; | struct MTex; | ||||
| struct MovieClip; | struct MovieClip; | ||||
| struct bNodeTree; | struct bNodeTree; | ||||
| ▲ Show 20 Lines • Show All 98 Lines • ▼ Show 20 Lines | struct DepsgraphNodeBuilder { | ||||
| OperationDepsNode *find_operation_node(ID *id, | OperationDepsNode *find_operation_node(ID *id, | ||||
| eDepsNode_Type comp_type, | eDepsNode_Type comp_type, | ||||
| eDepsOperation_Code opcode, | eDepsOperation_Code opcode, | ||||
| const char *name = "", | const char *name = "", | ||||
| int name_tag = -1); | int name_tag = -1); | ||||
| void build_id(ID* id); | void build_id(ID* id); | ||||
| void build_layer_collections(ListBase *lb); | |||||
| void build_view_layer(Scene *scene, | void build_view_layer(Scene *scene, | ||||
| ViewLayer *view_layer, | ViewLayer *view_layer, | ||||
| eDepsNode_LinkedState_Type linked_state); | eDepsNode_LinkedState_Type linked_state); | ||||
| void build_group(Group *group); | void build_collection(Collection *collection); | ||||
| void build_object(int base_index, | void build_object(int base_index, | ||||
| Object *object, | Object *object, | ||||
| eDepsNode_LinkedState_Type linked_state); | eDepsNode_LinkedState_Type linked_state); | ||||
| void build_object_flags(int base_index, | void build_object_flags(int base_index, | ||||
| Object *object, | Object *object, | ||||
| eDepsNode_LinkedState_Type linked_state); | eDepsNode_LinkedState_Type linked_state); | ||||
| void build_object_data(Object *object); | void build_object_data(Object *object); | ||||
| void build_object_transform(Object *object); | void build_object_transform(Object *object); | ||||
| ▲ Show 20 Lines • Show All 70 Lines • Show Last 20 Lines | |||||