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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-10-13 20:06:18 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-10-13 20:06:18 +0400
commitbdc41ca756ab48f0a83b4fd97560969521b4b433 (patch)
tree6bea4875ad4094520d8db38e45e946207d9bde10 /source/blender/editors/mask/mask_intern.h
parentbcee57e74e587260f2a7050b3b8a1894fe592466 (diff)
Code cleanup: Move output arguments to the end of the list
Diffstat (limited to 'source/blender/editors/mask/mask_intern.h')
-rw-r--r--source/blender/editors/mask/mask_intern.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/editors/mask/mask_intern.h b/source/blender/editors/mask/mask_intern.h
index af91afe838a..5cdb224ce21 100644
--- a/source/blender/editors/mask/mask_intern.h
+++ b/source/blender/editors/mask/mask_intern.h
@@ -44,12 +44,13 @@ bool ED_mask_find_nearest_diff_point(const struct bContext *C,
struct Mask *mask,
const float normal_co[2],
int threshold, bool feather,
+ float tangent[2],
+ const bool use_deform,
+ const bool use_project,
struct MaskLayer **masklay_r,
struct MaskSpline **spline_r,
struct MaskSplinePoint **point_r,
- float *u_r, float tangent[2],
- const bool use_deform,
- const bool use_project,
+ float *u_r,
float *score_r);
void MASK_OT_add_vertex(struct wmOperatorType *ot);