diff options
| author | 2013-12-10 12:28:58 -0500 | |
|---|---|---|
| committer | 2014-02-07 17:06:14 -0500 | |
| commit | 76d3a1b8d035d27bc80b0f2fc480a903bd001514 (patch) | |
| tree | a6346bbf593d565d89990f0bddecd2a5df92de9d /libs/hwui/ResourceCache.h | |
| parent | 8852ab4357ffb653bafb36f3b9272866834f7a72 (diff) | |
Removing SkiaColorFilter and inspecting the native object directly.
bug: 10650594
Change-Id: I4fcf66d008765afa0e35d011f58bc792183cb74f
Diffstat (limited to 'libs/hwui/ResourceCache.h')
| -rw-r--r-- | libs/hwui/ResourceCache.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libs/hwui/ResourceCache.h b/libs/hwui/ResourceCache.h index c06b09b48f8b..4097ba42c448 100644 --- a/libs/hwui/ResourceCache.h +++ b/libs/hwui/ResourceCache.h @@ -20,7 +20,6 @@ #include <cutils/compiler.h> #include <SkBitmap.h> -#include <SkiaColorFilter.h> #include <SkiaShader.h> #include <utils/KeyedVector.h> @@ -38,7 +37,6 @@ namespace uirenderer { enum ResourceType { kBitmap, kShader, - kColorFilter, kNinePatch, kPath, kLayer @@ -73,41 +71,35 @@ public: void incrementRefcount(const SkPath* resource); void incrementRefcount(const SkBitmap* resource); void incrementRefcount(SkiaShader* resource); - void incrementRefcount(SkiaColorFilter* resource); void incrementRefcount(const Res_png_9patch* resource); void incrementRefcount(Layer* resource); void incrementRefcountLocked(const SkPath* resource); void incrementRefcountLocked(const SkBitmap* resource); void incrementRefcountLocked(SkiaShader* resource); - void incrementRefcountLocked(SkiaColorFilter* resource); void incrementRefcountLocked(const Res_png_9patch* resource); void incrementRefcountLocked(Layer* resource); void decrementRefcount(const SkBitmap* resource); void decrementRefcount(const SkPath* resource); void decrementRefcount(SkiaShader* resource); - void decrementRefcount(SkiaColorFilter* resource); void decrementRefcount(const Res_png_9patch* resource); void decrementRefcount(Layer* resource); void decrementRefcountLocked(const SkBitmap* resource); void decrementRefcountLocked(const SkPath* resource); void decrementRefcountLocked(SkiaShader* resource); - void decrementRefcountLocked(SkiaColorFilter* resource); void decrementRefcountLocked(const Res_png_9patch* resource); void decrementRefcountLocked(Layer* resource); void destructor(SkPath* resource); void destructor(const SkBitmap* resource); void destructor(SkiaShader* resource); - void destructor(SkiaColorFilter* resource); void destructor(Res_png_9patch* resource); void destructorLocked(SkPath* resource); void destructorLocked(const SkBitmap* resource); void destructorLocked(SkiaShader* resource); - void destructorLocked(SkiaColorFilter* resource); void destructorLocked(Res_png_9patch* resource); bool recycle(SkBitmap* resource); |