Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # SPDX-License-Identifier: Apache-2.0
  2. if LVGL
  3. config LVGL_USE_RES_MANAGER
  4. bool "Enable resource attributes conversion"
  5. default y
  6. depends on RES_MANAGER
  7. help
  8. Enable resource atributes conversion
  9. config LVGL_RES_PRELOAD_PRIORITY
  10. int "Res Preload Thread Prioriy"
  11. default 5
  12. depends on LVGL_USE_RES_MANAGER
  13. help
  14. This option set res preload thread priority
  15. config LVGL_RES_PRELOAD_STACKSIZE
  16. int "Res Preload Thread Stack Size"
  17. default 1536
  18. depends on LVGL_USE_RES_MANAGER
  19. help
  20. This option set stack size for res preload thread
  21. config LVGL_USE_BITMAP_FONT
  22. bool "Enable bitmap fonts"
  23. default y
  24. depends on BITMAP_FONT
  25. help
  26. Enable bitmap font support
  27. config LVGL_USE_FREETYPE_FONT
  28. bool "Enable freetype fonts"
  29. default y
  30. depends on FREETYPE_FONT
  31. help
  32. Enable freetype font support
  33. config LVGL_USE_IMG_DECODER_ACTS
  34. bool "Enable Actions image decoder"
  35. help
  36. Enable Actions image decoder
  37. config LVGL_USE_IMG_DECODER_ACTS_RES
  38. bool "Enable Actions image res decoder"
  39. help
  40. Enable Actions image res decoder
  41. config LVGL_DECODE_CACHE_BUF_SIZE
  42. int "Maximum size of picture decoding(bytes)"
  43. default 25600
  44. depends on LVGL_USE_IMG_DECODER_ACTS
  45. help
  46. This option specifies the Maximum size of picture decoding(bytes).
  47. config LVGL_DISPLAY_FLUSH_WORKQ_STACKSIZE
  48. int "Stack Size of Workq for Display Delayed Flushing"
  49. default 1024
  50. depends on UI_SERVICE
  51. help
  52. This option set stack size of workq used for LVGL display delayed flushing.
  53. Set 0 to disable delayed flush for small VDB where hardware rendering is
  54. fast enough.
  55. endif # LVGL