diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-04-28 05:17:41 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-04-28 05:17:41 -0700 |
commit | 3de05ffb910b572f7816b838628567c760540f7d (patch) | |
tree | 832e9a28e72336d7c82790fbc920929c898b7297 /core/jni | |
parent | 17f213bc528cf296e133e9ec9c9e0ce5dce41781 (diff) | |
parent | fc8db53eee11568b286e8d9c17e211bd6781fab6 (diff) | |
download | frameworks_base-3de05ffb910b572f7816b838628567c760540f7d.zip frameworks_base-3de05ffb910b572f7816b838628567c760540f7d.tar.gz frameworks_base-3de05ffb910b572f7816b838628567c760540f7d.tar.bz2 |
Merge change 586 into donut
* changes:
Manage imagecache ram budget
Diffstat (limited to 'core/jni')
-rw-r--r-- | core/jni/AndroidRuntime.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/jni/AndroidRuntime.cpp b/core/jni/AndroidRuntime.cpp index 6742062..7c9f457 100644 --- a/core/jni/AndroidRuntime.cpp +++ b/core/jni/AndroidRuntime.cpp @@ -30,6 +30,7 @@ #include <SkGraphics.h> #include <SkImageDecoder.h> +#include <SkImageRef_GlobalPool.h> #include "jni.h" #include "JNIHelp.h" @@ -228,6 +229,13 @@ AndroidRuntime::AndroidRuntime() // this sets our preference for 16bit images during decode // in case the src is opaque and 24bit SkImageDecoder::SetDeviceConfig(SkBitmap::kRGB_565_Config); + // This cache is shared between browser native images, and java "purgeable" + // bitmaps. This globalpool is for images that do not either use the java + // heap, or are not backed by ashmem. See BitmapFactory.cpp for the key + // java call site. + SkImageRef_GlobalPool::SetRAMBudget(512 * 1024); + // There is also a global font cache, but its budget is specified in code + // see SkFontHost_android.cpp // Pre-allocate enough space to hold a fair number of options. mOptions.setCapacity(20); |