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

fix(gou_nxp_pxp): fix incorrent define name

This commit is contained in:
Gabor Kiss-Vamosi 2021-01-11 10:22:23 +01:00
parent 0d52a60200
commit 4cff14f823
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,8 @@
### Bugfixes
- fix(cpicker) fix division by zero
- fix(dropdown) fix selecting options after the last one
* fix(msgbox) use the animation time provided
- fix(msgbox) use the animation time provided
- fix(gpu_nxp_pxp) fix incorrent define name
## v7.9.0 (Plann1d at 05.01.2020

View File

@ -757,7 +757,7 @@ LV_ATTRIBUTE_FAST_MEM static void map_normal(const lv_area_t * disp_area, lv_col
if(opa > LV_OPA_MAX) {
#if LV_USE_GPU_NXP_PXP
if(lv_area_get_size(draw_area) >= GPU_NXP_PXP_BLIT_SIZE_LIMIT) {
if(lv_area_get_size(draw_area) >= LV_GPU_NXP_PXP_BLIT_SIZE_LIMIT) {
lv_gpu_nxp_pxp_blit(disp_buf_first, disp_w, map_buf_first, map_w, draw_area_w, draw_area_h, opa);
return;
}