From 39daf283ae260b6cd8b85e4b269959c421010268 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 20 Dec 2013 16:00:05 +0600 Subject: Don't use with_resol suffix for functions which doesn't get resolution --- source/blender/editors/mask/mask_add.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/editors/mask/mask_add.c') diff --git a/source/blender/editors/mask/mask_add.c b/source/blender/editors/mask/mask_add.c index 7a78d60e11e..d2704923de1 100644 --- a/source/blender/editors/mask/mask_add.c +++ b/source/blender/editors/mask/mask_add.c @@ -94,8 +94,8 @@ static int find_nearest_diff_point(const bContext *C, Mask *mask, const float no float *diff_points; unsigned int tot_diff_point; - diff_points = BKE_mask_point_segment_diff_with_resolution(spline, cur_point, width, height, - &tot_diff_point); + diff_points = BKE_mask_point_segment_diff(spline, cur_point, width, height, + &tot_diff_point); if (diff_points) { int j, tot_point; @@ -103,9 +103,9 @@ static int find_nearest_diff_point(const bContext *C, Mask *mask, const float no float *feather_points = NULL, *points; if (feather) { - feather_points = BKE_mask_point_segment_feather_diff_with_resolution(spline, cur_point, - width, height, - &tot_feather_point); + feather_points = BKE_mask_point_segment_feather_diff(spline, cur_point, + width, height, + &tot_feather_point); points = feather_points; tot_point = tot_feather_point; -- cgit v1.2.3