Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/node/deg_node_id.cc
| Show First 20 Lines • Show All 103 Lines • ▼ Show 20 Lines | |||||
| /* Initialize 'id' node - from pointer data given. */ | /* Initialize 'id' node - from pointer data given. */ | ||||
| void IDNode::init(const ID *id, const char *UNUSED(subdata)) | void IDNode::init(const ID *id, const char *UNUSED(subdata)) | ||||
| { | { | ||||
| BLI_assert(id != NULL); | BLI_assert(id != NULL); | ||||
| /* Store ID-pointer. */ | /* Store ID-pointer. */ | ||||
| id_orig = (ID *)id; | id_orig = (ID *)id; | ||||
| eval_flags = 0; | eval_flags = 0; | ||||
| previous_eval_flags = 0; | previous_eval_flags = 0; | ||||
| customdata_mask = 0; | customdata_vmask = 0; | ||||
| previous_customdata_mask = 0; | customdata_emask = 0; | ||||
| customdata_fmask = 0; | |||||
| customdata_lmask = 0; | |||||
| customdata_pmask = 0; | |||||
| previous_customdata_vmask = 0; | |||||
| previous_customdata_emask = 0; | |||||
| previous_customdata_fmask = 0; | |||||
| previous_customdata_lmask = 0; | |||||
| previous_customdata_pmask = 0; | |||||
| linked_state = DEG_ID_LINKED_INDIRECTLY; | linked_state = DEG_ID_LINKED_INDIRECTLY; | ||||
| is_directly_visible = true; | is_directly_visible = true; | ||||
| is_collection_fully_expanded = false; | is_collection_fully_expanded = false; | ||||
| visible_components_mask = 0; | visible_components_mask = 0; | ||||
| previously_visible_components_mask = 0; | previously_visible_components_mask = 0; | ||||
| components = BLI_ghash_new(id_deps_node_hash_key, | components = BLI_ghash_new(id_deps_node_hash_key, | ||||
| ▲ Show 20 Lines • Show All 125 Lines • Show Last 20 Lines | |||||