| Index: src/core/SkScan_AntiPath.cpp
|
| diff --git a/src/core/SkScan_AntiPath.cpp b/src/core/SkScan_AntiPath.cpp
|
| index 545a70129e1a3950b8f7eda3a51f881753e30ff3..4329ef5273a588218fc6b03d02d51645afe9cac2 100644
|
| --- a/src/core/SkScan_AntiPath.cpp
|
| +++ b/src/core/SkScan_AntiPath.cpp
|
| @@ -53,7 +53,7 @@ public:
|
| SkDEBUGFAIL("How did I get here?");
|
| }
|
| /// May not be called on BaseSuperBlitter because it blits out of order.
|
| - virtual void blitV(int x, int y, int height, SkAlpha alpha) SK_OVERRIDE {
|
| + void blitV(int x, int y, int height, SkAlpha alpha) SK_OVERRIDE {
|
| SkDEBUGFAIL("How did I get here?");
|
| }
|
|
|
| @@ -120,10 +120,10 @@ public:
|
|
|
| /// Blits a row of pixels, with location and width specified
|
| /// in supersampled coordinates.
|
| - virtual void blitH(int x, int y, int width) SK_OVERRIDE;
|
| + void blitH(int x, int y, int width) SK_OVERRIDE;
|
| /// Blits a rectangle of pixels, with location and size specified
|
| /// in supersampled coordinates.
|
| - virtual void blitRect(int x, int y, int width, int height) SK_OVERRIDE;
|
| + void blitRect(int x, int y, int width, int height) SK_OVERRIDE;
|
|
|
| private:
|
| // The next three variables are used to track a circular buffer that
|
| @@ -408,7 +408,7 @@ public:
|
| fRealBlitter->blitMask(fMask, fClipRect);
|
| }
|
|
|
| - virtual void blitH(int x, int y, int width) SK_OVERRIDE;
|
| + void blitH(int x, int y, int width) SK_OVERRIDE;
|
|
|
| static bool CanHandleRect(const SkIRect& bounds) {
|
| #ifdef FORCE_RLE
|
|
|