From 4cff14f82394667b270c7225750176c008b882a6 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Mon, 11 Jan 2021 10:22:23 +0100 Subject: [PATCH] fix(gou_nxp_pxp): fix incorrent define name --- CHANGELOG.md | 3 ++- src/lv_draw/lv_draw_blend.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3888658d2..53a861370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/lv_draw/lv_draw_blend.c b/src/lv_draw/lv_draw_blend.c index d5187815c..1b64346ca 100644 --- a/src/lv_draw/lv_draw_blend.c +++ b/src/lv_draw/lv_draw_blend.c @@ -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; }