From 3b24ece297afc8ee648f91dbbe890d8aaee7e3bc Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 26 May 2017 11:23:10 +0200 Subject: Depsgraph: Rename DAG > DEG functions from depsgraph_query.cc --- source/blender/makesrna/intern/rna_depsgraph.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/makesrna') 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); } -- cgit v1.2.3