summaryrefslogtreecommitdiff
path: root/libs/hwui/TextureCache.cpp
diff options
context:
space:
mode:
author Chris Craik <ccraik@android.com> 2014-03-11 18:08:10 +0000
committer Android Git Automerger <android-git-automerger@android.com> 2014-03-11 18:08:10 +0000
commitfa03b57295f7c73372bb62b0a1a3e906c3ee659e (patch)
tree5611ddcae713f80eb3a3bbb814f68618403ee244 /libs/hwui/TextureCache.cpp
parent3ba975e75d1e09142dd6258fb9886d526f5cda69 (diff)
parent7b4cce68853d8bcfce2b6bd7f999915063eb56d2 (diff)
am 7b4cce68: am c3bac8a0: Merge "Fix graphics corruption caused by HWUI caches"
* commit '7b4cce68853d8bcfce2b6bd7f999915063eb56d2': Fix graphics corruption caused by HWUI caches
Diffstat (limited to 'libs/hwui/TextureCache.cpp')
-rw-r--r--libs/hwui/TextureCache.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/hwui/TextureCache.cpp b/libs/hwui/TextureCache.cpp
index 8d0874f3e03b..a9ab2c63435b 100644
--- a/libs/hwui/TextureCache.cpp
+++ b/libs/hwui/TextureCache.cpp
@@ -184,7 +184,9 @@ void TextureCache::clearGarbage() {
Mutex::Autolock _l(mLock);
size_t count = mGarbage.size();
for (size_t i = 0; i < count; i++) {
- mCache.remove(mGarbage.itemAt(i));
+ const SkBitmap* bitmap = mGarbage.itemAt(i);
+ mCache.remove(bitmap);
+ delete bitmap;
}
mGarbage.clear();
}