From 2115232a16d81d28dbdb8042ed8e9316858514c6 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Fri, 4 Sep 2020 20:59:13 +0200 Subject: Cleanup: Clang-Tidy readability-inconsistent-declaration-parameter-name fix No functional changes --- source/blender/editors/sculpt_paint/paint_intern.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/editors/sculpt_paint') diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h index 65f78a2d988..a1894e1b4c6 100644 --- a/source/blender/editors/sculpt_paint/paint_intern.h +++ b/source/blender/editors/sculpt_paint/paint_intern.h @@ -214,15 +214,15 @@ void paint_2d_gradient_fill(const struct bContext *C, void *ps); void *paint_proj_new_stroke(struct bContext *C, struct Object *ob, const float mouse[2], int mode); void paint_proj_stroke(const struct bContext *C, - void *ps, - const float prevmval_i[2], - const float mval_i[2], + void *ps_handle_p, + const float prev_pos[2], + const float pos[2], const bool eraser, float pressure, float distance, float size); -void paint_proj_redraw(const struct bContext *C, void *pps, bool final); -void paint_proj_stroke_done(void *ps); +void paint_proj_redraw(const struct bContext *C, void *ps_handle_p, bool final); +void paint_proj_stroke_done(void *ps_handle_p); void paint_brush_color_get(struct Scene *scene, struct Brush *br, -- cgit v1.2.3