fix warnings

This commit is contained in:
Gabor Kiss-Vamosi
2021-05-03 19:20:02 +02:00
parent 3d4c4aea3c
commit b3d9ab0657
2 changed files with 12 additions and 9 deletions

View File

@@ -570,18 +570,18 @@ LV_ATTRIBUTE_FAST_MEM static void lv_draw_map(const lv_area_t * map_area, const
c.full = *((uint32_t *)map_px);
c.ch.alpha = 0xFF;
#endif
}
#endif
if(chroma_key) {
if(c.full == chroma_keyed_color.full) {
mask_buf[px_i] = LV_OPA_TRANSP;
if(chroma_key) {
if(c.full == chroma_keyed_color.full) {
mask_buf[px_i] = LV_OPA_TRANSP;
#if LV_COLOR_DEPTH == 32
map2[px_i].full = 0;
map2[px_i].full = 0;
#endif
continue;
continue;
}
}
}
}
#endif
if(draw_dsc->recolor_opa != 0) {
c = lv_color_mix_premult(recolor_premult, c, recolor_opa_inv);
}

View File

@@ -1398,7 +1398,7 @@ static void draw_full_border(const lv_area_t * area_inner, const lv_area_t * are
lv_draw_mask_remove_id(mask_rout_id);
lv_mem_buf_release(mask_buf);
}
#endif /*LV_DRAW_COMPLEX*/
#else /*LV_DRAW_COMPLEX*/
static void draw_simple_border(const lv_area_t * clip, const lv_area_t * area_inner, const lv_area_t * area_outer,
lv_color_t color, lv_opa_t opa, lv_border_side_t side)
@@ -1436,3 +1436,6 @@ static void draw_simple_border(const lv_area_t * clip, const lv_area_t * area_in
}
}
#endif