Fix compiler error

This commit is contained in:
Campbell Barton 2018-12-14 09:54:18 +11:00
parent c7a31bad9f
commit dfa3e0ae81
2 changed files with 0 additions and 4 deletions

View File

@ -3016,7 +3016,6 @@ void GPENCIL_OT_reproject(wmOperatorType *ot)
/* helper to smooth */
static void gp_smooth_stroke(bContext *C, wmOperator *op)
{
bGPdata *gpd = ED_gpencil_data_get_active(C);
const int repeat = RNA_int_get(op->ptr, "repeat");
float factor = RNA_float_get(op->ptr, "factor");
const bool only_selected = RNA_boolean_get(op->ptr, "only_selected");

View File

@ -251,9 +251,6 @@ void gp_stroke_delete_tagged_points(
int tag_flags, bool select);
int gp_delete_selected_point_wrap(bContext *C);
bool gp_smooth_stroke(bGPDstroke *gps, int i, float inf, bool affect_pressure);
bool gp_smooth_stroke_strength(bGPDstroke *gps, int i, float inf);
bool gp_smooth_stroke_thickness(bGPDstroke *gps, int i, float inf);
void gp_subdivide_stroke(bGPDstroke *gps, const int subdivide);
void gp_randomize_stroke(bGPDstroke *gps, Brush *brush, struct RNG *rng);