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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-11-28 17:06:32 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-11-28 17:06:32 +0300
commit178ea1f7982922f319e55de9288352d3a3e4af43 (patch)
tree9c9e5f2c8b534318b9448d2053a7a29a222765a2 /source/blender/depsgraph/DEG_depsgraph.h
parente5a74f3ad31e1ee55e086de682c7d01b8d27697e (diff)
Cleanup, naming of engine type variable
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h
index 25e5714a7d7..b95fea24053 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -86,7 +86,7 @@ typedef struct EvaluationContext {
struct Depsgraph *depsgraph;
struct ViewLayer *view_layer;
- struct RenderEngineType *engine;
+ struct RenderEngineType *engine_type;
} EvaluationContext;
/* DagNode->eval_flags */
@@ -218,7 +218,7 @@ void DEG_evaluation_context_init(struct EvaluationContext *eval_ctx,
void DEG_evaluation_context_init_from_scene(struct EvaluationContext *eval_ctx,
struct Scene *scene,
struct ViewLayer *view_layer,
- struct RenderEngineType *engine,
+ struct RenderEngineType *engine_type,
eEvaluationMode mode);
/* Free evaluation context. */