Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/DEG_depsgraph_query.h
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | |||||
| /* *********************** DEG input data ********************* */ | /* *********************** DEG input data ********************* */ | ||||
| /* Get scene that depsgraph was built for. */ | /* Get scene that depsgraph was built for. */ | ||||
| struct Scene *DEG_get_input_scene(const Depsgraph *graph); | struct Scene *DEG_get_input_scene(const Depsgraph *graph); | ||||
| /* Get view layer that depsgraph was built for. */ | /* Get view layer that depsgraph was built for. */ | ||||
| struct ViewLayer *DEG_get_input_view_layer(const Depsgraph *graph); | struct ViewLayer *DEG_get_input_view_layer(const Depsgraph *graph); | ||||
| /* Get bmain that depsgraph was built for. */ | |||||
| struct Main *DEG_get_bmain(const Depsgraph *graph); | |||||
| /* Get evaluation mode that depsgraph was built for. */ | /* Get evaluation mode that depsgraph was built for. */ | ||||
| eEvaluationMode DEG_get_mode(const Depsgraph *graph); | eEvaluationMode DEG_get_mode(const Depsgraph *graph); | ||||
| /* Get time that depsgraph is being evaluated or was last evaluated at. */ | /* Get time that depsgraph is being evaluated or was last evaluated at. */ | ||||
| float DEG_get_ctime(const Depsgraph *graph); | float DEG_get_ctime(const Depsgraph *graph); | ||||
| /* ********************* DEG evaluated data ******************* */ | /* ********************* DEG evaluated data ******************* */ | ||||
| ▲ Show 20 Lines • Show All 197 Lines • Show Last 20 Lines | |||||