cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4743fdb1906935bc93d82174156c6493d7ad48df
commit 4743fdb1906935bc93d82174156c6493d7ad48df Author: Cedric Bail <[email protected]> Date: Tue Jul 19 09:59:09 2016 -0700 config: increase base image cache to fit two 4K background in. This is not ideal, as it would be more accurate to dynamically set the cache to be a function of the number of screens and their size. --- config/default/base.src.in | 2 +- config/standard/base.src.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/default/base.src.in b/config/default/base.src.in index eed391c..c993549 100644 --- a/config/default/base.src.in +++ b/config/default/base.src.in @@ -31,7 +31,7 @@ group "Elm_Config" struct { value "font_hinting" int: 2; value "cache_flush_poll_interval" int: 512; value "cache_flush_enable" uchar: 1; - value "image_cache" int: 4096; + value "image_cache" int: 65536; value "font_cache" int: 512; value "edje_cache" int: 32; value "edje_collection_cache" int: 64; diff --git a/config/standard/base.src.in b/config/standard/base.src.in index e8ca1d0..c9f3f19 100644 --- a/config/standard/base.src.in +++ b/config/standard/base.src.in @@ -31,7 +31,7 @@ group "Elm_Config" struct { value "font_hinting" int: 2; value "cache_flush_poll_interval" int: 512; value "cache_flush_enable" uchar: 1; - value "image_cache" int: 4096; + value "image_cache" int: 65536; value "font_cache" int: 512; value "edje_cache" int: 32; value "edje_collection_cache" int: 64; --
