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-18 17:16:23 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-05-18 17:53:02 +0300
commitc36eb9b291328a5345ad406a28435c97d5ac0155 (patch)
tree43645c5b1618cc7bb5da0a0f54ccdc8933571c83 /source/blender/depsgraph/intern
parent849b26c7460ace53573b063349228c1106a22b1d (diff)
Rename Iterator struct to BLI_Iterator
Diffstat (limited to 'source/blender/depsgraph/intern')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_query.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_query.cc b/source/blender/depsgraph/intern/depsgraph_query.cc
index eff1a44be01..28e2b6d4ce6 100644
--- a/source/blender/depsgraph/intern/depsgraph_query.cc
+++ b/source/blender/depsgraph/intern/depsgraph_query.cc
@@ -105,7 +105,7 @@ typedef struct DAGObjectsIteratorData {
int flag;
} DAGObjectsIteratorData;
-void DAG_objects_iterator_begin(Iterator *iter, void *data_in)
+void DAG_objects_iterator_begin(BLI_Iterator *iter, void *data_in)
{
SceneLayer *scene_layer;
Depsgraph *graph = (Depsgraph *) data_in;
@@ -124,7 +124,7 @@ void DAG_objects_iterator_begin(Iterator *iter, void *data_in)
DAG_objects_iterator_next(iter);
}
-void DAG_objects_iterator_next(Iterator *iter)
+void DAG_objects_iterator_next(BLI_Iterator *iter)
{
DAGObjectsIteratorData *data = (DAGObjectsIteratorData *)iter->data;
Base *base = data->base->next;
@@ -163,7 +163,7 @@ void DAG_objects_iterator_next(Iterator *iter)
iter->valid = false;
}
-void DAG_objects_iterator_end(Iterator *iter)
+void DAG_objects_iterator_end(BLI_Iterator *iter)
{
DAGObjectsIteratorData *data = (DAGObjectsIteratorData *)iter->data;
if (data) {