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:
authorCampbell Barton <ideasman42@gmail.com>2018-06-03 11:59:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-03 12:12:50 +0300
commit6221180963c39f9f3f95982070ff6f381ab7e0b2 (patch)
treeecd853c013b5f2038ff9863d2c471a1b4244c0e7 /source/blender/makesdna/DNA_view3d_types.h
parent815b1f24fa298784d9204b9248bc69ceb2b3d762 (diff)
Cleanup: remove blockscale & handler
Replace with link_flag, currently unused, needed for dynamic space types which is planned.
Diffstat (limited to 'source/blender/makesdna/DNA_view3d_types.h')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h
index 6f3cf4e2bec..f7e2a98f66b 100644
--- a/source/blender/makesdna/DNA_view3d_types.h
+++ b/source/blender/makesdna/DNA_view3d_types.h
@@ -148,9 +148,10 @@ typedef struct RegionView3D {
typedef struct View3D {
struct SpaceLink *next, *prev;
ListBase regionbase; /* storage of regions for inactive spaces */
- int spacetype;
- float blockscale;
- short blockhandler[8];
+ char spacetype;
+ char link_flag;
+ char _pad0[6];
+ /* End 'SpaceLink' header. */
float viewquat[4] DNA_DEPRECATED;
float dist DNA_DEPRECATED;