| Index: src/core/SkDraw.cpp
|
| diff --git a/src/core/SkDraw.cpp b/src/core/SkDraw.cpp
|
| index af4f1ca0474fdecee56f137092f606cf31317133..df73f7ae3795829c09e40349a8671d805dd19d6c 100644
|
| --- a/src/core/SkDraw.cpp
|
| +++ b/src/core/SkDraw.cpp
|
| @@ -59,9 +59,9 @@ public:
|
| fBlitter = NULL;
|
| }
|
| SkAutoBlitterChoose(const SkBitmap& device, const SkMatrix& matrix,
|
| - const SkPaint& paint, bool drawCoverage = false) {
|
| + const SkPaint& paint) {
|
| fBlitter = SkBlitter::Choose(device, matrix, paint,
|
| - fStorage, sizeof(fStorage), drawCoverage);
|
| + fStorage, sizeof(fStorage));
|
| }
|
|
|
| ~SkAutoBlitterChoose();
|
| @@ -1023,8 +1023,7 @@ bool SkDrawTreatAsHairline(const SkPaint& paint, const SkMatrix& matrix,
|
| }
|
|
|
| void SkDraw::drawPath(const SkPath& origSrcPath, const SkPaint& origPaint,
|
| - const SkMatrix* prePathMatrix, bool pathIsMutable,
|
| - bool drawCoverage) const {
|
| + const SkMatrix* prePathMatrix, bool pathIsMutable) const {
|
| SkDEBUGCODE(this->validate();)
|
|
|
| // nothing to draw
|
| @@ -1113,7 +1112,7 @@ void SkDraw::drawPath(const SkPath& origSrcPath, const SkPaint& origPaint,
|
| // transform the path into device space
|
| pathPtr->transform(*matrix, devPathPtr);
|
|
|
| - SkAutoBlitterChoose blitter(*fBitmap, *fMatrix, *paint, drawCoverage);
|
| + SkAutoBlitterChoose blitter(*fBitmap, *fMatrix, *paint);
|
|
|
| if (paint->getMaskFilter()) {
|
| SkPaint::Style style = doFill ? SkPaint::kFill_Style :
|
|
|