| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | 
							- # Kconfig - Actions memory manager
 
- #
 
- # Copyright (c) 2016 Actions Corporation
 
- #
 
- # SPDX-License-Identifier: Apache-2.0
 
- #
 
- menuconfig UI_MEMORY_MANAGER
 
- 	bool "ui memory manager"
 
- 	help
 
- 	  This option enables ui memory manager
 
- if UI_MEMORY_MANAGER
 
- config UI_MEM_BLOCK_SIZE
 
- 	int "Block size (in bytes)"
 
- 	default 32
 
- 	help
 
- 	  This option specifies the size of block in bytes.
 
- config UI_MEM_NUMBER_BLOCKS
 
- 	int "Number of Blocks"
 
- 	default 0
 
- 	help
 
- 	  This option specifies the block number. A value of zero
 
- 	  means that no framebuffer block is defined.
 
- config UI_GUI_MEM_POOL_SIZE
 
- 	int "GUI memory pool size (in bytes)"
 
- 	default 0
 
- 	help
 
- 	  This option specifies the size of the GUI memory pool. A size of zero
 
- 	  means that no GUI memory pool is defined.
 
- config UI_RES_MEM_POOL_SIZE
 
- 	int "Resource memory pool size (in bytes)"
 
- 	default 0
 
- 	help
 
- 	  This option specifies the size of the resource memory pool. A size of
 
- 	  zero means that no resource memory pool is defined.
 
- config UI_MEM_VDB_SHARE_SURFACE_BUFFER
 
- 	bool "vdb buffer share with sram suface buffer"
 
- 	default n
 
- 	help
 
- 	  This option specifies vdb share with sram surface buffer.
 
- config UI_MEMORY_DEBUG
 
- 	bool "ui memory debug"
 
- 	depends on MEM_GUARD
 
- 	help
 
- 	  This option enables ui memory debug
 
- endif # UI_MEMORY_MANAGER
 
 
  |