Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/depsgraph.cc
| Show First 20 Lines • Show All 78 Lines • ▼ Show 20 Lines | |||||
| static DEG_EditorUpdateIDCb deg_editor_update_id_cb = NULL; | static DEG_EditorUpdateIDCb deg_editor_update_id_cb = NULL; | ||||
| static DEG_EditorUpdateSceneCb deg_editor_update_scene_cb = NULL; | static DEG_EditorUpdateSceneCb deg_editor_update_scene_cb = NULL; | ||||
| static DEG_EditorUpdateScenePreCb deg_editor_update_scene_pre_cb = NULL; | static DEG_EditorUpdateScenePreCb deg_editor_update_scene_pre_cb = NULL; | ||||
| Depsgraph::Depsgraph() | Depsgraph::Depsgraph() | ||||
| : time_source(NULL), | : time_source(NULL), | ||||
| need_update(true), | need_update(true), | ||||
| scene(NULL), | scene(NULL), | ||||
| scene_layer(NULL) | view_layer(NULL) | ||||
| { | { | ||||
| BLI_spin_init(&lock); | BLI_spin_init(&lock); | ||||
| id_hash = BLI_ghash_ptr_new("Depsgraph id hash"); | id_hash = BLI_ghash_ptr_new("Depsgraph id hash"); | ||||
| entry_tags = BLI_gset_ptr_new("Depsgraph entry_tags"); | entry_tags = BLI_gset_ptr_new("Depsgraph entry_tags"); | ||||
| } | } | ||||
| Depsgraph::~Depsgraph() | Depsgraph::~Depsgraph() | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 434 Lines • Show Last 20 Lines | |||||