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>2017-07-12 06:54:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-07-12 06:58:48 +0300
commit8603424d0ae46873a04f01288f2adbb14152383e (patch)
tree6495d45dc85f4fb65cb814e782dfc6989f16605d /source/blender/editors/transform/transform_snap_object.c
parent1f933c94a76e546de3d8fe43d74977b2fd15ff14 (diff)
Cleanup: unused vars
Diffstat (limited to 'source/blender/editors/transform/transform_snap_object.c')
-rw-r--r--source/blender/editors/transform/transform_snap_object.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/source/blender/editors/transform/transform_snap_object.c b/source/blender/editors/transform/transform_snap_object.c
index 8f10098c4c2..fa17ab34cf9 100644
--- a/source/blender/editors/transform/transform_snap_object.c
+++ b/source/blender/editors/transform/transform_snap_object.c
@@ -262,8 +262,7 @@ MINLINE float depth_get(const float co[3], const float ray_start[3], const float
return dot_v3v3(dvec, ray_dir);
}
-
-static float dist_aabb_to_plane(
+static float UNUSED_FUNCTION(dist_aabb_to_plane)(
const float bbmin[3], const float bbmax[3],
const float plane_co[3], const float plane_no[3])
{
@@ -1654,7 +1653,7 @@ static bool snapDerivedMesh(
/* read/write args */
float *ray_depth, float *dist_px,
/* return args */
- float r_loc[3], float r_no[3], int *r_index)
+ float r_loc[3], float r_no[3])
{
bool retval = false;
@@ -1819,7 +1818,7 @@ static bool snapEditMesh(
/* read/write args */
float *ray_depth, float *dist_px,
/* return args */
- float r_loc[3], float r_no[3], int *r_index)
+ float r_loc[3], float r_no[3])
{
bool retval = false;
@@ -1978,7 +1977,7 @@ static bool snapObject(
/* read/write args */
float *ray_depth, float *dist_px,
/* return args */
- float r_loc[3], float r_no[3], int *r_index,
+ float r_loc[3], float r_no[3],
Object **r_ob, float r_obmat[4][4])
{
bool retval = false;
@@ -1991,7 +1990,7 @@ static bool snapObject(
retval = snapEditMesh(
sctx, snapdata, ob, em, obmat,
ray_depth, dist_px,
- r_loc, r_no, r_index);
+ r_loc, r_no);
}
else {
/* in this case we want the mesh from the editmesh, avoids stale data. see: T45978.
@@ -2007,7 +2006,7 @@ static bool snapObject(
retval = snapDerivedMesh(
sctx, snapdata, ob, dm, obmat,
ray_depth, dist_px,
- r_loc, r_no, r_index);
+ r_loc, r_no);
dm->release(dm);
}
@@ -2087,7 +2086,7 @@ static bool snapObjectsRay(
/* read/write args */
float *ray_depth, float *dist_px,
/* return args */
- float r_loc[3], float r_no[3], int *r_index,
+ float r_loc[3], float r_no[3],
Object **r_ob, float r_obmat[4][4])
{
bool retval = false;
@@ -2099,7 +2098,7 @@ static bool snapObjectsRay(
retval |= snapObject(
sctx, snapdata, sobj->ob, sobj->obmat, sobj->use_obedit,
ray_depth, dist_px,
- r_loc, r_no, r_index, r_ob, r_obmat);
+ r_loc, r_no, r_ob, r_obmat);
}
BLI_freelistN(&obj_list);
@@ -2434,7 +2433,7 @@ bool ED_transform_snap_object_project_view3d_ex(
return snapObjectsRay(
sctx, &snapdata,
params->snap_select, params->use_object_edit_cage,
- ray_depth, dist_px, r_loc, r_no, r_index, NULL, NULL);
+ ray_depth, dist_px, r_loc, r_no, NULL, NULL);
}
}