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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-23 16:54:21 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-23 17:27:23 +0300
commit69ad44d5b48aa0d2cf00ff6c37be01f7384afe3b (patch)
treebb2a10a9a857191716a4cab1ef30a81ca6ce40f3 /source/blender/makesdna
parent9208146199019e111711f077abcda31f976cabcc (diff)
Cleanup: remove unimplemented texture space rotation variables
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_curve_types.h3
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h
index 1c8365f7b72..919ad598cec 100644
--- a/source/blender/makesdna/DNA_curve_types.h
+++ b/source/blender/makesdna/DNA_curve_types.h
@@ -227,14 +227,13 @@ typedef struct Curve {
/* texture space, copied as one block in editobject.c */
float loc[3];
float size[3];
- float rot[3];
/** Creation-time type of curve datablock. */
short type;
/** Keep a short because of BKE_object_obdata_texspace_get(). */
short texflag;
- char _pad0[2];
+ char _pad0[6];
short twist_mode;
float twist_smooth, smallcaps_scale;
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 30acfa68971..e77a535ab7a 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -175,7 +175,6 @@ typedef struct Mesh {
/* texture space, copied as one block in editobject.c */
float loc[3];
float size[3];
- float rot[3];
short texflag, flag;
float smoothresh;
@@ -192,7 +191,7 @@ typedef struct Mesh {
float remesh_voxel_size;
char remesh_mode;
- char _pad1[3];
+ char _pad1[7];
/** Deprecated multiresolution modeling data, only keep for loading old files. */
struct Multires *mr DNA_DEPRECATED;