Cleanup: Fix naming of a function

This commit is contained in:
Sergey Sharybin 2019-10-14 10:45:35 +02:00
parent bde328352b
commit e7367c607e
4 changed files with 6 additions and 6 deletions

@ -1 +1 @@
Subproject commit 7a6516c3e98ffa9cec21f490be733ee6d49a6424
Subproject commit 0ec4a4fd2ac1a9a0aaf550ced7e4b445a340ca4e

View File

@ -212,8 +212,8 @@ void what_does_obaction(struct Object *ob,
float cframe);
/* for proxy */
void BKE_pose_copyesult_pchan_result(struct bPoseChannel *pchanto,
const struct bPoseChannel *pchanfrom);
void BKE_pose_copy_pchan_result(struct bPoseChannel *pchanto,
const struct bPoseChannel *pchanfrom);
bool BKE_pose_copy_result(struct bPose *to, struct bPose *from);
/* clear all transforms */
void BKE_pose_rest(struct bPose *pose);

View File

@ -1472,7 +1472,7 @@ void BKE_pose_rest(bPose *pose)
}
}
void BKE_pose_copyesult_pchan_result(bPoseChannel *pchanto, const bPoseChannel *pchanfrom)
void BKE_pose_copy_pchan_result(bPoseChannel *pchanto, const bPoseChannel *pchanfrom)
{
copy_m4_m4(pchanto->pose_mat, pchanfrom->pose_mat);
copy_m4_m4(pchanto->chan_mat, pchanfrom->chan_mat);
@ -1523,7 +1523,7 @@ bool BKE_pose_copy_result(bPose *to, bPose *from)
for (pchanfrom = from->chanbase.first; pchanfrom; pchanfrom = pchanfrom->next) {
pchanto = BKE_pose_channel_find_name(to, pchanfrom->name);
if (pchanto != NULL) {
BKE_pose_copyesult_pchan_result(pchanto, pchanfrom);
BKE_pose_copy_pchan_result(pchanto, pchanfrom);
}
}
return true;

View File

@ -909,7 +909,7 @@ void BKE_pose_eval_proxy_copy_bone(struct Depsgraph *depsgraph, Object *object,
pchan->name);
return;
}
BKE_pose_copyesult_pchan_result(pchan, pchan_from);
BKE_pose_copy_pchan_result(pchan, pchan_from);
copy_dq_dq(&pchan->runtime.deform_dual_quat, &pchan_from->runtime.deform_dual_quat);
BKE_pchan_bbone_segments_cache_copy(pchan, pchan_from);
}