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/DEG_depsgraph_query.h
parent849b26c7460ace53573b063349228c1106a22b1d (diff)
Rename Iterator struct to BLI_Iterator
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph_query.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_query.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h
index 9960a1e45e2..b1d914666d6 100644
--- a/source/blender/depsgraph/DEG_depsgraph_query.h
+++ b/source/blender/depsgraph/DEG_depsgraph_query.h
@@ -36,7 +36,7 @@
struct ID;
struct Depsgraph;
-struct Iterator;
+struct BLI_Iterator;
struct SceneLayer;
#ifdef __cplusplus
@@ -60,9 +60,9 @@ struct Object *DAG_get_object(struct Depsgraph *depsgraph, struct Object *ob);
/* ************************ DAG iterators ********************* */
-void DAG_objects_iterator_begin(struct Iterator *iter, void *data_in);
-void DAG_objects_iterator_next(struct Iterator *iter);
-void DAG_objects_iterator_end(struct Iterator *iter);
+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);
/* Temporary hacky solution waiting for cow depsgrpah implementation. */
#define DEG_OBJECT_ITER(graph_, instance_) \