aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkMaskFilter.h
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2014-06-03 10:53:59 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-06-03 10:54:00 -0700
commit868074b50b0fc3e460d2aa97c1096827fe0a1935 (patch)
treec5ab88df3447648135bda22d667fe93d362d384e /include/core/SkMaskFilter.h
parent55ada0630e1ce1bfd6e6e60b70370384530622cc (diff)
remove SkBounder -- unused and unloved
BUG=skia: R=scroggo@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/312553006
Diffstat (limited to 'include/core/SkMaskFilter.h')
-rw-r--r--include/core/SkMaskFilter.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/core/SkMaskFilter.h b/include/core/SkMaskFilter.h
index 8051e7d831..72f20af21f 100644
--- a/include/core/SkMaskFilter.h
+++ b/include/core/SkMaskFilter.h
@@ -19,7 +19,6 @@ class GrContext;
class GrPaint;
class SkBitmap;
class SkBlitter;
-class SkBounder;
class SkMatrix;
class SkPath;
class SkRasterClip;
@@ -205,17 +204,15 @@ private:
to render that mask. Returns false if filterMask() returned false.
This method is not exported to java.
*/
- bool filterPath(const SkPath& devPath, const SkMatrix& devMatrix,
- const SkRasterClip&, SkBounder*, SkBlitter* blitter,
- SkPaint::Style style) const;
+ bool filterPath(const SkPath& devPath, const SkMatrix& ctm, const SkRasterClip&, SkBlitter*,
+ SkPaint::Style) const;
/** Helper method that, given a roundRect in device space, will rasterize it into a kA8_Format
mask and then call filterMask(). If this returns true, the specified blitter will be called
to render that mask. Returns false if filterMask() returned false.
*/
- bool filterRRect(const SkRRect& devRRect, const SkMatrix& devMatrix,
- const SkRasterClip&, SkBounder*, SkBlitter* blitter,
- SkPaint::Style style) const;
+ bool filterRRect(const SkRRect& devRRect, const SkMatrix& ctm, const SkRasterClip&,
+ SkBlitter*, SkPaint::Style style) const;
typedef SkFlattenable INHERITED;
};