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:
authorAlexander Gavrilov <angavrilov@gmail.com>2018-11-15 14:19:26 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2018-11-15 14:19:35 +0300
commite318da53508d2ee9a2e6ccc04ce31674a2c17986 (patch)
tree33b2971d6cbb1f2094d4091601426a1b0c9bc721 /source/blender/blenkernel/intern/constraint.c
parent90cf9bcc7d52f98889e96f1bef4ddf2125a33755 (diff)
Remove unused parameter.
Diffstat (limited to 'source/blender/blenkernel/intern/constraint.c')
-rw-r--r--source/blender/blenkernel/intern/constraint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index eb242baccfa..96480862b93 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -109,7 +109,7 @@
static void damptrack_do_transform(float matrix[4][4], const float tarvec[3], int track_axis);
-static bConstraint *constraint_find_original(struct Depsgraph *depsgraph, Object *ob, bPoseChannel *pchan, bConstraint *con, Object **r_orig_ob);
+static bConstraint *constraint_find_original(Object *ob, bPoseChannel *pchan, bConstraint *con, Object **r_orig_ob);
/* -------------- Naming -------------- */
@@ -2985,7 +2985,7 @@ static void stretchto_evaluate(bConstraint *con, bConstraintOb *cob, ListBase *t
/* Write the computed length back to the master copy if in COW evaluation. */
if (DEG_is_active(cob->depsgraph)) {
Object *orig_ob = NULL;
- bConstraint *orig_con = constraint_find_original(cob->depsgraph, cob->ob, cob->pchan, con, &orig_ob);
+ bConstraint *orig_con = constraint_find_original(cob->ob, cob->pchan, con, &orig_ob);
if (orig_con != NULL) {
bStretchToConstraint *orig_data = orig_con->data;
@@ -5105,7 +5105,7 @@ bConstraint *BKE_constraint_find_from_target(Object *ob, bConstraintTarget *tgt,
}
/* Finds the original copy of the constraint based on a COW copy. */
-static bConstraint *constraint_find_original(struct Depsgraph *depsgraph, Object *ob, bPoseChannel *pchan, bConstraint *con, Object **r_orig_ob)
+static bConstraint *constraint_find_original(Object *ob, bPoseChannel *pchan, bConstraint *con, Object **r_orig_ob)
{
Object *orig_ob = (Object*)DEG_get_original_id((ID*)ob);