| Index: src/core/SkDraw.cpp
|
| diff --git a/src/core/SkDraw.cpp b/src/core/SkDraw.cpp
|
| index 929088df17d25f206cab35fbc7b5ac240fba7411..c194b31b10d61fbfc722ec48f161977c4eafafda 100644
|
| --- a/src/core/SkDraw.cpp
|
| +++ b/src/core/SkDraw.cpp
|
| @@ -880,7 +880,7 @@ void SkDraw::drawDevMask(const SkMask& srcM, const SkPaint& paint) const {
|
|
|
| SkMask dstM;
|
| if (paint.getMaskFilter() &&
|
| - paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
|
| + paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL, NULL)) {
|
| mask = &dstM;
|
| } else {
|
| dstM.fImage = NULL;
|
| @@ -2306,7 +2306,7 @@ static bool compute_bounds(const SkPath& devPath, const SkIRect* clipBounds,
|
| srcM.fBounds = *bounds;
|
| srcM.fFormat = SkMask::kA8_Format;
|
| srcM.fImage = NULL;
|
| - if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
|
| + if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin, NULL)) {
|
| return false;
|
| }
|
| }
|
|
|