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:
parent
effe86bf5f
commit
8ee6f17ade
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user