feat(drivers): add Windows backend for LVGL v9 (#5313)

This commit is contained in:
Kenji Mouri (Qi Lu)
2024-01-14 23:35:35 +08:00
committed by GitHub
parent b4cf95e7fa
commit cab1336d8e
13 changed files with 2051 additions and 0 deletions

View File

@@ -39,6 +39,9 @@
#if LV_USE_DRAW_VG_LITE
#include "draw/vg_lite/lv_draw_vg_lite.h"
#endif
#if LV_USE_WINDOWS
#include "src/dev/windows/lv_windows_context.h"
#endif
/*********************
* DEFINES
@@ -185,6 +188,10 @@ void lv_init(void)
lv_draw_sdl_init();
#endif
#if LV_USE_WINDOWS
lv_windows_platform_init();
#endif
_lv_obj_style_init();
/*Initialize the screen refresh system*/