Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/depsgraph.h
| Show First 20 Lines • Show All 146 Lines • ▼ Show 20 Lines | struct Depsgraph { | ||||
| TimeSourceNode *time_source; | TimeSourceNode *time_source; | ||||
| /* Indicates whether relations needs to be updated. */ | /* Indicates whether relations needs to be updated. */ | ||||
| bool need_update; | bool need_update; | ||||
| /* Indicates which ID types were updated. */ | /* Indicates which ID types were updated. */ | ||||
| char id_type_updated[MAX_LIBARRAY]; | char id_type_updated[MAX_LIBARRAY]; | ||||
| /* Indicates type of IDs present in the depsgraph. */ | |||||
| char id_type_exist[MAX_LIBARRAY]; | |||||
| /* Quick-Access Temp Data ............. */ | /* Quick-Access Temp Data ............. */ | ||||
| /* Nodes which have been tagged as "directly modified". */ | /* Nodes which have been tagged as "directly modified". */ | ||||
| GSet *entry_tags; | GSet *entry_tags; | ||||
| /* Convenience Data ................... */ | /* Convenience Data ................... */ | ||||
| /* XXX: should be collected after building (if actually needed?) */ | /* XXX: should be collected after building (if actually needed?) */ | ||||
| ▲ Show 20 Lines • Show All 46 Lines • Show Last 20 Lines | |||||