Kconfig 639 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Kconfig - Actions memory manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. config TILE_CACHE_NUM
  8. int "Number of tile cache"
  9. default 1
  10. help
  11. This option specifies the Number of tile cache.
  12. config TILE_MAX_W
  13. int "max width of tiles (pixels)"
  14. default 32
  15. help
  16. This option specifies the max width of tiles(pixels).
  17. config TILE_MAX_H
  18. int "max height of tiles (pixels)"
  19. default 32
  20. help
  21. This option specifies the max height of tiles(pixels).
  22. config TILE_BYTES_PER_PIXELS
  23. int "bytes per pixels (pixels)"
  24. default 4
  25. help
  26. This option specifies the bytes per pixels(pixels).