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-12-15 13:11:19 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-12-15 13:59:05 +0300
commit0b5616aef1c18860d89a6a56e99d8a1a9c012c15 (patch)
treee6c641f25223de513335825aa6a345126d08b65d /source/blender/depsgraph/DEG_depsgraph_query.h
parent90b79176870e56b55f5c72a8943a502bfe78c7b0 (diff)
Depsgraph: cleanup DEGOIterObjectData > DEGObjectIterData
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 c0269d2ba26..c782a91f76e 100644
--- a/source/blender/depsgraph/DEG_depsgraph_query.h
+++ b/source/blender/depsgraph/DEG_depsgraph_query.h
@@ -77,7 +77,7 @@ enum {
DEG_ITER_OBJECT_FLAG_DUPLI = (1 << 4),
};
-typedef struct DEGOIterObjectData {
+typedef struct DEGObjectIterData {
struct Depsgraph *graph;
struct Scene *scene;
struct EvaluationContext eval_ctx;
@@ -104,9 +104,9 @@ typedef struct DEGOIterObjectData {
/* **** Iteration ober ID nodes **** */
size_t id_node_index;
size_t num_id_nodes;
-} DEGOIterObjectData;
+} DEGObjectIterData;
-void DEG_iterator_objects_begin(struct BLI_Iterator *iter, DEGOIterObjectData *data);
+void DEG_iterator_objects_begin(struct BLI_Iterator *iter, DEGObjectIterData *data);
void DEG_iterator_objects_next(struct BLI_Iterator *iter);
void DEG_iterator_objects_end(struct BLI_Iterator *iter);
@@ -117,7 +117,7 @@ void DEG_iterator_objects_end(struct BLI_Iterator *iter);
*/
#define DEG_OBJECT_ITER(graph_, instance_, flag_) \
{ \
- DEGOIterObjectData data_ = { \
+ DEGObjectIterData data_ = { \
.graph = (graph_), \
.flag = (flag_), \
}; \