1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

remove debug printfs

This commit is contained in:
Gabor Kiss-Vamosi 2018-08-14 01:22:17 +02:00
parent eaef1c70d6
commit 1b800e2499

View File

@ -1365,13 +1365,10 @@ static void lv_draw_shadow_full_straight(const lv_area_t * coords, const lv_area
bottom_area.x2 = coords->x2 - radius - LV_ANTIALIAS; bottom_area.x2 = coords->x2 - radius - LV_ANTIALIAS;
bottom_area.y2 = bottom_area.y1; bottom_area.y2 = bottom_area.y1;
printf("shadow: ");
lv_opa_t opa_act; lv_opa_t opa_act;
int16_t d; int16_t d;
for(d = 1 /*+ LV_ANTIALIAS*/; d <= swidth/* - LV_ANTIALIAS*/; d++) { for(d = 1 /*+ LV_ANTIALIAS*/; d <= swidth/* - LV_ANTIALIAS*/; d++) {
opa_act = map[d]; opa_act = map[d];
printf("%d, ", opa_act);
fill_fp(&right_area, mask, style->body.shadow.color, opa_act); fill_fp(&right_area, mask, style->body.shadow.color, opa_act);
right_area.x1++; right_area.x1++;
@ -1389,8 +1386,6 @@ static void lv_draw_shadow_full_straight(const lv_area_t * coords, const lv_area
bottom_area.y1++; bottom_area.y1++;
bottom_area.y2++; bottom_area.y2++;
} }
printf("\n");
} }
#endif #endif