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>2019-02-11 08:48:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-11 08:50:23 +0300
commite215216958093790b0377d42567fd42c94942bef (patch)
tree08e4ef913fdd8059d0774cbd083d01b41bb5e594 /source/blender/makesdna/DNA_action_types.h
parent43156d830470fbbcd89bc1bd4b1f32d3348ba7a9 (diff)
Cleanup: use "_Runtime" suffix for DNA
Was done everywhere except bPoseChannel.
Diffstat (limited to 'source/blender/makesdna/DNA_action_types.h')
-rw-r--r--source/blender/makesdna/DNA_action_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index a9447efb19d..63010bcc27f 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -182,7 +182,7 @@ typedef struct bPoseChannelDrawData {
struct DualQuat;
struct Mat4;
-typedef struct bPoseChannelRuntime {
+typedef struct bPoseChannel_Runtime {
int bbone_segments;
char pad[4];
@@ -193,7 +193,7 @@ typedef struct bPoseChannelRuntime {
/* Delta from rest to pose in matrix and DualQuat form. */
struct Mat4 *bbone_deform_mats;
struct DualQuat *bbone_dual_quats;
-} bPoseChannelRuntime;
+} bPoseChannel_Runtime;
/* ************************************************ */
/* Poses */
@@ -330,8 +330,8 @@ typedef struct bPoseChannel {
/** Points to an original pose channel. */
struct bPoseChannel *orig_pchan;
- /** Runtime data. */
- struct bPoseChannelRuntime runtime;
+ /** Runtime data (keep last). */
+ struct bPoseChannel_Runtime runtime;
} bPoseChannel;