1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

Merge 2676bc88393bc741930cba8248cdafb2c7ed07f5 into dev

This commit is contained in:
github-actions[bot] 2021-03-16 22:00:40 +00:00 committed by GitHub
commit 3e5ce7a464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@
#include <string.h>
#if LV_USE_GPU_STM32_DMA2D
#include "../gpu/gpu_stm32_dma2d.h"
#include "../gpu/lv_gpu_stm32_dma2d.h"
#endif
/*********************

View File

@ -13,11 +13,11 @@
#include "../core/lv_refr.h"
#if LV_USE_GPU_NXP_PXP
#include "../gpu/gpu_nxp_pxp.h"
#include "../gpu/lv_gpu_nxp_pxp.h"
#elif LV_USE_GPU_NXP_VG_LITE
#include "../gpu/gpu_nxp_vglite.h"
#include "../gpu/lv_gpu_nxp_vglite.h"
#elif LV_USE_GPU_STM32_DMA2D
#include "../gpu/gpu_stm32_dma2d.h"
#include "../gpu/lv_gpu_stm32_dma2d.h"
#endif
/*********************

View File

@ -14,9 +14,9 @@
#include "../misc/lv_mem.h"
#include "../misc/lv_math.h"
#if LV_USE_GPU_STM32_DMA2D
#include "../gpu/gpu_stm32_dma2d.h"
#include "../gpu/lv_gpu_stm32_dma2d.h"
#elif LV_USE_GPU_NXP_PXP
#include "../gpu/gpu_nxp_pxp.h"
#include "../gpu/lv_gpu_nxp_pxp.h"
#endif
/*********************