Depsgraph: Move DAG_get_object function

BKE_depsgraph.h will be deprecated eventually, so moving it to DEG_depsgraph_query.h
This commit is contained in:
Dalai Felinto
2017-04-21 11:29:47 +02:00
parent 3e7968c35f
commit 6294bd1b8b
5 changed files with 10 additions and 15 deletions

View File

@@ -54,6 +54,9 @@ struct Scene *DAG_get_scene(struct Depsgraph *graph);
/* Get scene layer the despgraph is created for. */
struct SceneLayer *DAG_get_scene_layer(struct Depsgraph *graph);
/* Get the object as properly evaluated by depsgraph. */
struct Object *DAG_get_object(struct Depsgraph *depsgraph, struct Object *ob);
#ifdef __cplusplus
} /* extern "C" */
#endif