[Bf-blender-cvs] [dd2629fa62f] temp-gpencil-bezier-v2: GPencil: Make runtime data last in curve DNA

Falk David noreply at git.blender.org
Tue Mar 9 10:07:23 CET 2021


Commit: dd2629fa62f552822a165965e82ead17ea1416e2
Author: Falk David
Date:   Mon Mar 8 23:07:29 2021 +0100
Branches: temp-gpencil-bezier-v2
https://developer.blender.org/rBdd2629fa62f552822a165965e82ead17ea1416e2

GPencil: Make runtime data last in curve DNA

===================================================================

M	source/blender/makesdna/DNA_gpencil_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index 06aef507052..65b2b81824f 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -236,11 +236,11 @@ typedef struct bGPDcurve {
   /** General flag. */
   short flag;
   char _pad[2];
-  bGPDcurve_Runtime runtime;
-
   /** Vertex weight data. */
   struct MDeformVert *dvert;
   void *_pad2;
+  
+  bGPDcurve_Runtime runtime;
 } bGPDcurve;
 
 /* bGPDcurve_Flag->flag */



More information about the Bf-blender-cvs mailing list