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/makesrna
parentbdbf4471a6c4ba2d444eea5e7f0e6984b3aaafc2 (diff)
Depsgraph: Rename DAG > DEG functions from depsgraph_query.cc
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_depsgraph.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_depsgraph.c b/source/blender/makesrna/intern/rna_depsgraph.c
index cc94bee2b3a..d90f754bf23 100644
--- a/source/blender/makesrna/intern/rna_depsgraph.c
+++ b/source/blender/makesrna/intern/rna_depsgraph.c
@@ -88,19 +88,19 @@ static void rna_Depsgraph_objects_begin(CollectionPropertyIterator *iter, Pointe
{
Depsgraph *graph = (Depsgraph *)ptr->data;
iter->internal.custom = MEM_callocN(sizeof(BLI_Iterator), __func__);
- DAG_objects_iterator_begin(iter->internal.custom, graph);
+ DEG_objects_iterator_begin(iter->internal.custom, graph);
iter->valid = ((BLI_Iterator *)iter->internal.custom)->valid;
}
static void rna_Depsgraph_objects_next(CollectionPropertyIterator *iter)
{
- DAG_objects_iterator_next(iter->internal.custom);
+ DEG_objects_iterator_next(iter->internal.custom);
iter->valid = ((BLI_Iterator *)iter->internal.custom)->valid;
}
static void rna_Depsgraph_objects_end(CollectionPropertyIterator *iter)
{
- DAG_objects_iterator_end(iter->internal.custom);
+ DEG_objects_iterator_end(iter->internal.custom);
MEM_freeN(iter->internal.custom);
}