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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-01-22 17:34:27 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-01-22 17:34:27 +0300
commitcbbbb9d17918af656578bc6526d21e41acaa59e4 (patch)
treedbdbfa031dc1efe1dbd6d53b25a635d1d3212fb3 /source
parenta60a623a1ac5416a6c07b4e8c038d603735a0061 (diff)
Fix wrong DNA alignment on arm{el,hf} and mipsel
Technically, pointers are to be padded with followup pointer.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h1
-rw-r--r--source/blender/makesdna/DNA_scene_types.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index 33dfe66a151..1c2008749b6 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -181,6 +181,7 @@ typedef struct bGPDstroke_Runtime {
/** Original stroke (used to dereference evaluated data) */
struct bGPDstroke *gps_orig;
+ void *_pad2;
} bGPDstroke_Runtime;
/* Grease-Pencil Annotations - 'Stroke'
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 7cfd19b4bd9..a645a03d1ac 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -1793,6 +1793,7 @@ typedef struct Scene {
/** Settings to be override by workspaces. */
IDProperty *layer_properties;
+ void *_pad9;
struct SceneDisplay display;
struct SceneEEVEE eevee;