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-06-07 18:35:23 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-06-08 11:46:45 +0300
commit23c93873f4073e440d3817465252d8f86134654c (patch)
treea2d8d03ca46d21ef6bca1aff38a6b7f2139343a9 /source/blender/makesdna/DNA_layer_types.h
parentd675415eef9f565b1828f48dfe874321af1c4af8 (diff)
Remove selection color from the base
Use indirect access to it via object. It was already flushing from base to object, now we can avoid such flushing. Still weird to have selection color filled in by dependency graph, but now there is no synchronization going on at least.
Diffstat (limited to 'source/blender/makesdna/DNA_layer_types.h')
-rw-r--r--source/blender/makesdna/DNA_layer_types.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_layer_types.h b/source/blender/makesdna/DNA_layer_types.h
index 1e6657ae29c..03ca6cd8c5c 100644
--- a/source/blender/makesdna/DNA_layer_types.h
+++ b/source/blender/makesdna/DNA_layer_types.h
@@ -39,10 +39,8 @@ typedef struct Base {
short refcount;
short sx, sy;
struct Object *object;
- unsigned int selcol;
unsigned int lay;
int flag_legacy;
- int pad;
struct IDProperty *collection_properties; /* used by depsgraph, flushed from collection-tree */
} Base;