fix(draw): fix "blend_non_normal_pixel: Not supported blend mode" issue when using lv_demo_smartwatch which compiled by MSVC (#8017)

Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
This commit is contained in:
Kenji Mouri / 毛利 研二
2025-04-10 11:37:56 +08:00
committed by GitHub
parent d6f147feb1
commit 6eae86729f
+1 -1
View File
@@ -71,7 +71,7 @@ struct _lv_draw_image_dsc_t {
/**Describes how to blend the pixels of the image to the background.
* See `lv_blend_mode_t` for more details.
*/
lv_blend_mode_t blend_mode : 3;
lv_blend_mode_t blend_mode : 4;
/**1: perform the transformation with anti-alaising */
uint16_t antialias : 1;