summaryrefslogtreecommitdiff
path: root/image/image_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'image/image_cache.h')
-rw-r--r--image/image_cache.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/image/image_cache.h b/image/image_cache.h
index c0ccfac90..568f3e951 100644
--- a/image/image_cache.h
+++ b/image/image_cache.h
@@ -43,8 +43,25 @@
typedef struct bitmap * (image_cache_convert_fn) (struct content *content);
-/** Initialise the image cache */
-nserror image_cache_init(void);
+struct image_cache_parameters {
+ /** How frequently the background cache clean process is run (ms) */
+ unsigned int bg_clean_time;
+
+ /** The target upper bound for the image cache size */
+ size_t limit;
+
+ /** The hysteresis allowed round the target size */
+ size_t hysteresis;
+
+ /** The speculative conversion "small" size */
+ size_t speculative_small;
+};
+
+/** Initialise the image cache
+ *
+ * @param image_cache_parameters The control parameters for the image cache
+ */
+nserror image_cache_init(const struct image_cache_parameters *image_cache_parameters);
nserror image_cache_fini(void);
/** adds an image content to be cached.