Skip to content

Add configurable pixmap caching with LRU eviction #114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions configs/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,32 @@ config SHADOW_BLUR
range 1 10
depends on DROP_SHADOW

config PIXMAP_CACHE
bool "Enable pixmap caching"
default y
help
Enable caching of pixmaps to improve performance by reusing
frequently allocated pixmaps. This reduces memory allocation
overhead at the cost of slightly increased memory usage.

config PIXMAP_CACHE_SIZE
int "Maximum number of cached pixmaps"
default 8
range 4 32
depends on PIXMAP_CACHE
help
Maximum number of pixmaps that can be stored in the cache.
Larger values may improve performance but use more memory.

config PIXMAP_CACHE_MAX_KB
int "Maximum cache size in KB"
default 64
range 16 512
depends on PIXMAP_CACHE
help
Maximum total memory size for cached pixmaps in kilobytes.
The cache will evict entries to stay within this limit.

endmenu

menu "Image Loaders"
Expand Down
Loading