Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2017-05-26 12:23:10 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-05-26 12:23:10 +0300
commit3b24ece297afc8ee648f91dbbe890d8aaee7e3bc (patch)
tree55346c6d8d17dbd8e4c31c30410a4c4a0ca95214 /source/blender/depsgraph/DEG_depsgraph_query.h
parentbdbf4471a6c4ba2d444eea5e7f0e6984b3aaafc2 (diff)
Depsgraph: Rename DAG > DEG functions from depsgraph_query.cc
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph_query.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_query.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h
index b1d914666d6..6f7f98861dd 100644
--- a/source/blender/depsgraph/DEG_depsgraph_query.h
+++ b/source/blender/depsgraph/DEG_depsgraph_query.h
@@ -50,25 +50,25 @@ bool DEG_id_type_tagged(struct Main *bmain, short idtype);
short DEG_get_eval_flags_for_id(struct Depsgraph *graph, struct ID *id);
/* Get scene the despgraph is created for. */
-struct Scene *DAG_get_scene(struct Depsgraph *graph);
+struct Scene *DEG_get_scene(struct Depsgraph *graph);
/* Get scene layer the despgraph is created for. */
-struct SceneLayer *DAG_get_scene_layer(struct Depsgraph *graph);
+struct SceneLayer *DEG_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);
+struct Object *DEG_get_object(struct Depsgraph *depsgraph, struct Object *ob);
/* ************************ DAG iterators ********************* */
-void DAG_objects_iterator_begin(struct BLI_Iterator *iter, void *data_in);
-void DAG_objects_iterator_next(struct BLI_Iterator *iter);
-void DAG_objects_iterator_end(struct BLI_Iterator *iter);
+void DEG_objects_iterator_begin(struct BLI_Iterator *iter, void *data_in);
+void DEG_objects_iterator_next(struct BLI_Iterator *iter);
+void DEG_objects_iterator_end(struct BLI_Iterator *iter);
-/* Temporary hacky solution waiting for cow depsgrpah implementation. */
+/* Temporary hacky solution waiting for cow depsgraph implementation. */
#define DEG_OBJECT_ITER(graph_, instance_) \
- ITER_BEGIN(DAG_objects_iterator_begin, \
- DAG_objects_iterator_next, \
- DAG_objects_iterator_end, \
+ ITER_BEGIN(DEG_objects_iterator_begin, \
+ DEG_objects_iterator_next, \
+ DEG_objects_iterator_end, \
graph_, Object *, instance_)
#define DEG_OBJECT_ITER_END \