From 68d262ba931996c88bbcfbe98ad38dc3bea1647f Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 8 May 2018 11:22:21 +0200 Subject: [PATCH] lv_draw: remove debug printf-s --- lv_draw/lv_draw.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index ea1625dfe..482c74b7b 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -1842,8 +1842,6 @@ static void lv_draw_shadow_full(const lv_area_t * coords, const lv_area_t * mask px_fp(point_lt.x,point_lt.y , mask, style->body.shadow.color, line_2d_blur[d]); } - printf("%d, ", line_2d_blur[d]); - if(point_rb.x != point_lb.x && point_lt.y != point_lb.y) { px_fp(point_lb.x,point_lb.y , mask, style->body.shadow.color, line_2d_blur[d]); } @@ -1862,8 +1860,6 @@ static void lv_draw_shadow_full(const lv_area_t * coords, const lv_area_t * mask point_lt.x--; } - printf("\n"); - /* Put the first line to the edges too. * It is not correct because blur should be done below the corner too * but is is simple, fast and gives a good enough result*/