mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
fix lv_deinit when LV_USE_GPU_SDL is enabled (#2598)
* Fixed lv_deinit when LV_USE_GPU_SDL is enabled * Update CHANGELOG.md
This commit is contained in:
parent
5565d5965a
commit
c45d9ccc3e
@ -1,6 +1,7 @@
|
||||
# Changelog
|
||||
|
||||
## v8.1.0 (In progress)
|
||||
- Fixed lv_deinit declaration when LV_USE_GPU_SDL is enabled
|
||||
- added sample lv_example_list_2.py
|
||||
- lv_obj_move_up(obj) and lv_obj_move_down(obj) added. (#2461)
|
||||
- feat(example) stacked area chart lv_example_chart_8 added.
|
||||
|
@ -194,7 +194,7 @@ typedef struct _lv_obj_t {
|
||||
*/
|
||||
void lv_init(void);
|
||||
|
||||
#if LV_ENABLE_GC || !LV_MEM_CUSTOM
|
||||
#if LV_ENABLE_GC || !LV_MEM_CUSTOM || LV_USE_GPU_SDL
|
||||
|
||||
/**
|
||||
* Deinit the 'lv' library
|
||||
|
Loading…
x
Reference in New Issue
Block a user