Index: src/effects/SkPictureImageFilter.cpp |
diff --git a/src/effects/SkPictureImageFilter.cpp b/src/effects/SkPictureImageFilter.cpp |
index 0b36b1d0464b3df59ac581979a91e759f96cb690..a2f558f20287ddf6bea74bc371bf2b4fdc090576 100644 |
--- a/src/effects/SkPictureImageFilter.cpp |
+++ b/src/effects/SkPictureImageFilter.cpp |
@@ -92,3 +92,10 @@ bool SkPictureImageFilter::onFilterImage(Proxy* proxy, const SkBitmap&, const Co |
offset->fY = bounds.fTop; |
return true; |
} |
+ |
+bool SkPictureImageFilter::onFilterBounds(const SkIRect& src, const SkMatrix& ctm, |
+ SkIRect* dst) const { |
+ *dst = src; |
reed1
2014/05/30 20:10:20
Why are we not applying the CTM?
|
+ return true; |
+} |
+ |