aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkDevice.h
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2016-03-24 05:01:23 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-24 05:01:23 -0700
commit1579e3c376a9ee8c694a64f9c87457cea13ba442 (patch)
tree1582fd026d9ca7e81be3d8eb11b573887cba0a3a /include/core/SkDevice.h
parent910f7ec7e79cd051f69b47c3e19d4fda2adbcef4 (diff)
Switch SkBlurImageFilter over to new onFilterImage interface
This CL relies on: https://codereview.chromium.org/1787883002/ (Add SkSpecialImage::extractSubset & NewFromPixmap) https://codereview.chromium.org/1808743003/ (Allow SkGpuDevice::drawSprite to handle subset SkBitmaps) https://codereview.chromium.org/1813813002/ (Add SkSpecialImage::makeTextureImage entry point) GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1785643003 Committed: https://skia.googlesource.com/skia/+/3c935bc87020bfd19a08922f7394db3a801d168b Review URL: https://codereview.chromium.org/1785643003
Diffstat (limited to 'include/core/SkDevice.h')
-rw-r--r--include/core/SkDevice.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/include/core/SkDevice.h b/include/core/SkDevice.h
index 7339342256..5d903fd074 100644
--- a/include/core/SkDevice.h
+++ b/include/core/SkDevice.h
@@ -378,6 +378,12 @@ protected:
return NULL;
}
+ /**
+ * Calls through to drawSprite, processing the imagefilter.
+ */
+ virtual void drawBitmapAsSpriteWithImageFilter(const SkDraw&, const SkBitmap&,
+ int x, int y, const SkPaint&);
+
private:
friend class SkCanvas;
friend struct DeviceCM; //for setMatrixClip
@@ -388,11 +394,6 @@ private:
friend class SkNoPixelsBitmapDevice;
friend class SkSurface_Raster;
- /**
- * Calls through to drawSprite, processing imagefilter as needed.
- */
- void drawBitmapAsSprite(const SkDraw&, const SkBitmap&, int x, int y, const SkPaint&);
-
// used to change the backend's pixels (and possibly config/rowbytes)
// but cannot change the width/height, so there should be no change to
// any clip information.