aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/STM32LTDC/gdisp_lld_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gdisp/STM32LTDC/gdisp_lld_config.h')
-rw-r--r--drivers/gdisp/STM32LTDC/gdisp_lld_config.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/drivers/gdisp/STM32LTDC/gdisp_lld_config.h b/drivers/gdisp/STM32LTDC/gdisp_lld_config.h
index 5c3b1883..1476b38b 100644
--- a/drivers/gdisp/STM32LTDC/gdisp_lld_config.h
+++ b/drivers/gdisp/STM32LTDC/gdisp_lld_config.h
@@ -21,8 +21,15 @@
// Both these pixel formats are supported - pick one.
// RGB565 obviously is faster and uses less RAM but with lower color resolution than RGB888
-#define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_RGB565
-//#define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_RGB888
+
+#if defined(GDISP_LTDC_USE_RGB565) && GDISP_LTDC_USE_RGB565
+ #define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_RGB565
+ #if GDISP_TOTAL_DISPLAYS > 1
+ #error "LTDC: You must use RGB888 pixel format with LTDC when using dual layers as only RGB888 currently supports using alpha"
+ #endif
+#else
+ #define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_RGB888
+#endif
/*===========================================================================*/
@@ -35,9 +42,12 @@
// Accelerated bitfills are also possible but only for GDISP_ROTATE_0
// and if no color translation is required (for now)
- #if !GDISP_NEED_CONTROL && GDISP_PIXELFORMAT == GDISP_LLD_PIXELFORMAT
- #define GDISP_HARDWARE_BITFILLS TRUE
- #endif
+ // Oops - this is not working and adds little performance benefit
+ // so we will just disable it for the near future.
+// #if !GDISP_NEED_CONTROL && !defined(GDISP_PIXELFORMAT)
+// #define GDISP_HARDWARE_BITFILLS TRUE
+// #endif
+
#endif /* GDISP_USE_DMA2D */
#endif /* GFX_USE_GDISP */