aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkMaskCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkMaskCache.h')
-rw-r--r--src/core/SkMaskCache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/SkMaskCache.h b/src/core/SkMaskCache.h
index 9df1bf8601..88a989b2ec 100644
--- a/src/core/SkMaskCache.h
+++ b/src/core/SkMaskCache.h
@@ -23,20 +23,20 @@ public:
*
* On failure, return nullptr.
*/
- static SkCachedData* FindAndRef(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
+ static SkCachedData* FindAndRef(SkScalar sigma, SkBlurStyle style,
const SkRRect& rrect, SkMask* mask,
SkResourceCache* localCache = nullptr);
- static SkCachedData* FindAndRef(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
+ static SkCachedData* FindAndRef(SkScalar sigma, SkBlurStyle style,
const SkRect rects[], int count, SkMask* mask,
SkResourceCache* localCache = nullptr);
/**
* Add a mask and its pixel-data to the cache.
*/
- static void Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
+ static void Add(SkScalar sigma, SkBlurStyle style,
const SkRRect& rrect, const SkMask& mask, SkCachedData* data,
SkResourceCache* localCache = nullptr);
- static void Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality,
+ static void Add(SkScalar sigma, SkBlurStyle style,
const SkRect rects[], int count, const SkMask& mask, SkCachedData* data,
SkResourceCache* localCache = nullptr);
};