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-12-02 06:32:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-02 06:37:04 +0300
commit55b31dd98ce592ef4e51a9f9edece9ade7c519db (patch)
tree290f5170ce123029d4b5eb3e801605daae7708bb /source/blender/makesrna/intern/rna_pose_api.c
parent2e392a0fdc0975e500d7ea07bfbfc781f5ddd190 (diff)
parent335e1b507b1ad0e7c2bafb2175dac15d3d1add83 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/makesrna/intern/rna_pose_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_pose_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_pose_api.c b/source/blender/makesrna/intern/rna_pose_api.c
index f4463e0f7d8..6b7a8e4e2ff 100644
--- a/source/blender/makesrna/intern/rna_pose_api.c
+++ b/source/blender/makesrna/intern/rna_pose_api.c
@@ -95,8 +95,8 @@ static void rna_PoseBone_compute_bbone_handles(
BBoneSplineParameters params;
- BKE_pchan_get_bbone_spline_parameters(pchan, rest, &params);
- BKE_compute_b_bone_handles(&params, ret_h1, ret_roll1, ret_h2, ret_roll2, ease || offsets, offsets);
+ BKE_pchan_bbone_spline_params_get(pchan, rest, &params);
+ BKE_pchan_bbone_handles_compute(&params, ret_h1, ret_roll1, ret_h2, ret_roll2, ease || offsets, offsets);
}
#else