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>2013-12-23 11:50:53 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-12-23 11:50:53 +0400
commit40223ffe699e3b9c112441c8c313960b4692db9d (patch)
tree4f99ca6438dcd2f472d5bf7a7325f335757bfbe5 /source/blender/blenkernel/BKE_main.h
parentbbd1068ef722fbe5f4deed447d9637d65ab29657 (diff)
Rename evaluation_context to eval_ctx
Only affects on variable name, structure name stays the same. Addresses code review from Campbell to make variable names which are being passed all over be short. Not entirely happy with this, but well ok. It's still verbose enough and naming kind of consistent to what Python uses. Discussed with Brecht and he's also fine with such a change. Hopefully this is last change to be done before merge :)
Diffstat (limited to 'source/blender/blenkernel/BKE_main.h')
-rw-r--r--source/blender/blenkernel/BKE_main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_main.h b/source/blender/blenkernel/BKE_main.h
index f58f019edb5..721866daff5 100644
--- a/source/blender/blenkernel/BKE_main.h
+++ b/source/blender/blenkernel/BKE_main.h
@@ -95,7 +95,7 @@ typedef struct Main {
char id_tag_update[256];
/* Evaluation context used by viewport */
- struct EvaluationContext *evaluation_context;
+ struct EvaluationContext *eval_ctx;
} Main;
#define MAIN_VERSION_ATLEAST(main, ver, subver) \