1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-02-04 07:13:00 +08:00

fix(stm32): invalidate cache when needed (#4161)

This commit is contained in:
xuxeu 2023-04-25 17:16:26 +08:00 committed by GitHub
parent effe86bf5f
commit 8ee6f17ade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,10 @@ void lv_draw_stm32_dma2d_blend(lv_draw_ctx_t * draw_ctx, const lv_draw_sw_blend_
} }
} }
if(!done) lv_draw_sw_blend_basic(draw_ctx, dsc); if(!done) {
lv_draw_sw_blend_basic(draw_ctx, dsc);
invalidate_cache();
}
} }
void lv_draw_stm32_dma2d_buffer_copy(lv_draw_ctx_t * draw_ctx, void lv_draw_stm32_dma2d_buffer_copy(lv_draw_ctx_t * draw_ctx,