feat(dma2d): add basic support (#6691)

This commit is contained in:
Liam
2024-09-11 03:48:43 -04:00
committed by GitHub
parent c0af741b45
commit bdb5806fdf
13 changed files with 1116 additions and 1 deletions

View File

@@ -55,6 +55,9 @@
#if LV_USE_DRAW_VG_LITE
#include "draw/vg_lite/lv_draw_vg_lite.h"
#endif
#if LV_USE_DRAW_DMA2D
#include "draw/dma2d/lv_draw_dma2d.h"
#endif
#if LV_USE_WINDOWS
#include "drivers/windows/lv_windows_context.h"
#endif
@@ -210,6 +213,10 @@ void lv_init(void)
lv_draw_sdl_init();
#endif
#if LV_USE_DRAW_DMA2D
lv_draw_dma2d_init();
#endif
#if LV_USE_WINDOWS
lv_windows_platform_init();
#endif
@@ -397,6 +404,10 @@ void lv_deinit(void)
lv_draw_vg_lite_deinit();
#endif
#if LV_USE_DRAW_DMA2D
lv_draw_dma2d_deinit();
#endif
#if LV_USE_DRAW_SW
lv_draw_sw_deinit();
#endif