Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/DEG_depsgraph_query.h
| Show All 37 Lines | |||||
| struct ID; | struct ID; | ||||
| struct Base; | struct Base; | ||||
| struct BLI_Iterator; | struct BLI_Iterator; | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| struct DupliObject; | struct DupliObject; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct Scene; | struct Scene; | ||||
| struct SceneLayer; | struct ViewLayer; | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| /* Check if given ID type was tagged for update. */ | /* Check if given ID type was tagged for update. */ | ||||
| bool DEG_id_type_tagged(struct Main *bmain, short id_type); | bool DEG_id_type_tagged(struct Main *bmain, short id_type); | ||||
| /* Get additional evaluation flags for the given ID. */ | /* Get additional evaluation flags for the given ID. */ | ||||
| short DEG_get_eval_flags_for_id(struct Depsgraph *graph, struct ID *id); | short DEG_get_eval_flags_for_id(struct Depsgraph *graph, struct ID *id); | ||||
| /* Get scene the despgraph is created for. */ | /* Get scene the despgraph is created for. */ | ||||
| struct Scene *DEG_get_evaluated_scene(struct Depsgraph *graph); | struct Scene *DEG_get_evaluated_scene(struct Depsgraph *graph); | ||||
| /* Get scene layer the despgraph is created for. */ | /* Get scene layer the despgraph is created for. */ | ||||
| struct SceneLayer *DEG_get_evaluated_scene_layer(struct Depsgraph *graph); | struct ViewLayer *DEG_get_evaluated_view_layer(struct Depsgraph *graph); | ||||
| /* Get evaluated version of object for given original one. */ | /* Get evaluated version of object for given original one. */ | ||||
| struct Object *DEG_get_evaluated_object(struct Depsgraph *depsgraph, struct Object *object); | struct Object *DEG_get_evaluated_object(struct Depsgraph *depsgraph, struct Object *object); | ||||
| /* Get evaluated version of given ID datablock. */ | /* Get evaluated version of given ID datablock. */ | ||||
| struct ID *DEG_get_evaluated_id(struct Depsgraph *depsgraph, struct ID *id); | struct ID *DEG_get_evaluated_id(struct Depsgraph *depsgraph, struct ID *id); | ||||
| /* ************************ DAG iterators ********************* */ | /* ************************ DAG iterators ********************* */ | ||||
| ▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines | |||||