feat(gpu): add renesas dav2d GPU support

This commit is contained in:
Gabor Kiss-Vamosi
2023-12-12 11:43:21 +01:00
parent 6a0db1fd59
commit 710e134abf
15 changed files with 2871 additions and 0 deletions

View File

@@ -32,6 +32,9 @@
#if LV_USE_DRAW_PXP
#include "draw/nxp/pxp/lv_draw_pxp.h"
#endif
#if LV_USE_DRAW_DAVE2D
#include "draw/renesas/dave2d/lv_draw_dave2d.h"
#endif
#if LV_USE_DRAW_SDL
#include "draw/sdl/lv_draw_sdl.h"
#endif
@@ -169,10 +172,15 @@ void lv_init(void)
lv_draw_pxp_init();
#endif
#if LV_USE_DRAW_DAVE2D
lv_draw_dave2d_init();
#endif
#if LV_USE_DRAW_SDL
lv_draw_sdl_init();
#endif
_lv_obj_style_init();
/*Initialize the screen refresh system*/