summaryrefslogtreecommitdiff
path: root/libs/hwui/PathCache.cpp
diff options
context:
space:
mode:
author John Reck <jreck@google.com> 2015-11-10 23:20:03 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-11-10 23:20:03 +0000
commit37bf3ec9d2fb3dfdccfe043e51723e4e543f0703 (patch)
treebf733341a7a586f01bb1e9c91c2327813b61b935 /libs/hwui/PathCache.cpp
parent8d8515e708f0cebf69587750bbb3abcb315cc61e (diff)
parent2e4f67c388aff0def50dd619388624f1dbe359ad (diff)
Merge "Fix HWUI Path Cache dangling pointer"
Diffstat (limited to 'libs/hwui/PathCache.cpp')
-rw-r--r--libs/hwui/PathCache.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/libs/hwui/PathCache.cpp b/libs/hwui/PathCache.cpp
index 3af640f76365..3236f6f7c24d 100644
--- a/libs/hwui/PathCache.cpp
+++ b/libs/hwui/PathCache.cpp
@@ -400,6 +400,13 @@ PathTexture* PathCache::get(const SkPath* path, const SkPaint* paint) {
return texture;
}
+void PathCache::remove(const SkPath* path, const SkPaint* paint)
+{
+ PathDescription entry(kShapePath, paint);
+ entry.shape.path.mGenerationID = path->getGenerationID();
+ mCache.remove(entry);
+}
+
void PathCache::precache(const SkPath* path, const SkPaint* paint) {
if (!Caches::getInstance().tasks.canRunTasks()) {
return;