mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-23 07:46:36 +08:00
fix(draw/blend): log unsupported color format (#9926)
This commit is contained in:
@@ -447,7 +447,7 @@ void LV_ATTRIBUTE_FAST_MEM lv_draw_sw_blend_image_to_rgb565(lv_draw_sw_blend_ima
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
LV_LOG_WARN("Not supported source color format");
|
||||
LV_LOG_WARN("Not supported source color format 0x%02X", dsc->src_color_format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -446,7 +446,7 @@ void LV_ATTRIBUTE_FAST_MEM lv_draw_sw_blend_image_to_rgb565_swapped(lv_draw_sw_b
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
LV_LOG_WARN("Not supported source color format");
|
||||
LV_LOG_WARN("Not supported source color format 0x%02X", dsc->src_color_format);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user