Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # Kconfig - Actions font manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. config BITMAP_FONT_CACHE_POOL_SIZE
  8. int "cache pool size for all fonts"
  9. default 368640
  10. help
  11. This option set cache size for each font size
  12. config EMOJI_FONT_USE_MMAP
  13. bool "enable mmap on emoji font"
  14. default false
  15. help
  16. This option enable mmap emoji font to save cache space
  17. config BITMAP_FONT
  18. bool "bitmap font library"
  19. help
  20. This option enables the bitmap font library.
  21. if BITMAP_FONT
  22. config BITMAP_FONT_USE_HIGH_FREQ_CACHE
  23. bool "bitmap font high freq cache"
  24. help
  25. This option enables bitmap font high freqency cache.
  26. config BITMAP_FONT_HIGH_FREQ_CACHE_SIZE
  27. int "high freq char cache size"
  28. default 1536000
  29. help
  30. This option set max font cache size for high freq Hanzi chars
  31. config BITMAP_PER_FONT_CACHE_SIZE
  32. int "cache size per font size"
  33. default 65536
  34. help
  35. This option set cache size for each font size
  36. config BITMAP_FONT_MAX_OPENED_FONT
  37. int "max fonts can be opened"
  38. default 2
  39. help
  40. This option set max num of opened fonts
  41. config BITMAP_FONT_SUPPORT_EMOJI
  42. bool "bitmap font emoji support"
  43. help
  44. This option enables bitmap font emoji support.
  45. endif # BITMAP_FONT
  46. config FREETYPE_FONT
  47. bool "freetype font library"
  48. help
  49. This option enables the freetype font library.
  50. if FREETYPE_FONT
  51. config FREETYPE_MEM_POOL_USER
  52. bool "freetype use mem pool"
  53. help
  54. This option enables the freetype mem pool.
  55. config FREETYPE_FONT_MAX_FACES
  56. int "freetype max faces can be opened"
  57. default 2
  58. help
  59. This option set max faces can be opened
  60. config FREETYPE_FONT_MAX_SIZES
  61. int "freetype max sizes can be opened"
  62. default 5
  63. help
  64. This option set max sizes can be opened
  65. config FREETYPE_FONT_ENABLE_MEMORY_FACE
  66. bool "freetype enable memory face"
  67. help
  68. This option enables freetype to open memory face.
  69. config FREETYPE_FONT_BITMAP_BPP
  70. int "final bpp of rendered glyph"
  71. default 2
  72. help
  73. This option set final bpp of rendered glyph
  74. config FREETYPE_PER_FONT_CACHE_SIZE
  75. int "cache size per font size"
  76. default 65536
  77. help
  78. This option set cache size for each font size
  79. config FREETYPE_FONT_MAX_SUBCACHE_BYTES
  80. int "freetype max bytes can be used in freetype cache"
  81. default 5
  82. help
  83. This option set max btyes can be used in freetype cache
  84. config FREETYPE_FONT_ENABLE_SVG_PATH
  85. bool "enable svg path optimization"
  86. default n
  87. help
  88. This option enalbe svg path optimization
  89. config FREETYPE_SHAPE_INFO_CACHE_SIZE
  90. int "shape info cache size"
  91. default 4096
  92. help
  93. This option set shape info cache size
  94. config FREETYPE_FONT_SHAPE_CACHE_SIZE
  95. int "shape cache size"
  96. default 120000
  97. help
  98. This option set shape cache size
  99. endif # FREETYPE_FONT