Kconfig 911 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Configuration options for Actions OSAL
  2. # Copyright (c) 2020 Actions Technology Co., Ltd
  3. # SPDX-License-Identifier: Apache-2.0
  4. if DISPLAY
  5. menuconfig DISPLAY_COMPOSER
  6. bool "Display Composer"
  7. default y if UI_SERVICE
  8. help
  9. Enable Display composer
  10. if DISPLAY_COMPOSER
  11. config DISPLAY_COMPOSER_DEBUG_FPS
  12. bool "Debug Post Frame Rate (fps) in Display Composer"
  13. default y
  14. help
  15. Debug post frame rate (fps) in Display Composer
  16. config DISPLAY_COMPOSER_DEBUG_VSYNC
  17. bool "Debug VSYNC/TE Signal Period in Display Composer"
  18. default y
  19. help
  20. Debug VSYNC/TE signal period in Display Composer
  21. endif # DISPLAY_COMPOSER
  22. config GUI_API_BROM
  23. bool "ROM GUI api"
  24. default y if SOC_LARK_FPGA || SOC_LARK
  25. help
  26. Enable ROM GUI api
  27. config UI_DMA_MEMSETCPY
  28. bool "DMA accelerated memset/memcpy for UI"
  29. default y if SOC_LARK_FPGA || SOC_LARK
  30. help
  31. Enable DMA accelerated memset/memcpy for UI
  32. endif # DISPLAY