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>2016-11-24 20:07:19 +0300
committerDalai Felinto <dfelinto@gmail.com>2016-11-24 20:07:19 +0300
commit041e2d3e28c549beb1a40a7ee70597f6a9fc1d7a (patch)
tree0808cbd0af0b6d2e7528c2662e7dcfc5db189fc9 /source/blender/makesdna/DNA_scene_types.h
parentbe976500fe6d8d7f6df15298ea806caaa42a0009 (diff)
Base list refcount with Bastien Montagnelayers
Diffstat (limited to 'source/blender/makesdna/DNA_scene_types.h')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index cc1ef4dca32..e121af8166e 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -74,8 +74,9 @@ typedef struct Base {
struct Base *next, *prev;
unsigned int lay DNA_DEPRECATED_LAYERS; /* deprecated in 2.8 */
unsigned int selcol;
- int flag;
+ short flag;
short sx, sy;
+ short refcount;
struct Object *object;
} Base;