diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-23 11:28:45 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-23 11:28:45 +0000 |
commit | 3e2ea2565d12e572a977fa04b4b1996c8eb3fefc (patch) | |
tree | 4e762eb542b113b74012075e3d9ebd87f928faa7 | |
parent | faa5ae456d184202993a5dbe782a3a95acc25326 (diff) |
I don't want these changes as part of the "allow bleeding" CL.
R=bsalomon@google.com
Author: robertphillips@google.com
Review URL: https://chromiumcodereview.appspot.com/19842002
git-svn-id: http://skia.googlecode.com/svn/trunk@10256 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | src/utils/SkDeferredCanvas.cpp | 30 | ||||
-rw-r--r-- | tests/DeferredCanvasTest.cpp | 2 | ||||
-rw-r--r-- | tests/LayerDrawLooperTest.cpp | 3 |
3 files changed, 19 insertions, 16 deletions
diff --git a/src/utils/SkDeferredCanvas.cpp b/src/utils/SkDeferredCanvas.cpp index da3c72e22c..68d06024d1 100644 --- a/src/utils/SkDeferredCanvas.cpp +++ b/src/utils/SkDeferredCanvas.cpp @@ -186,58 +186,60 @@ protected: // None of the following drawing methods should ever get called on the // deferred device - virtual void clear(SkColor color) + virtual void clear(SkColor color) SK_OVERRIDE {SkASSERT(0);} - virtual void drawPaint(const SkDraw&, const SkPaint& paint) + virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count, const SkPoint[], - const SkPaint& paint) + const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawRect(const SkDraw&, const SkRect& r, - const SkPaint& paint) + const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawPath(const SkDraw&, const SkPath& path, const SkPaint& paint, const SkMatrix* prePathMatrix = NULL, - bool pathIsMutable = false) + bool pathIsMutable = false) SK_OVERRIDE {SkASSERT(0);} virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, const SkIRect* srcRectOrNull, - const SkMatrix& matrix, const SkPaint& paint) + const SkMatrix& matrix, const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, - int x, int y, const SkPaint& paint) + int x, int y, const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawText(const SkDraw&, const void* text, size_t len, - SkScalar x, SkScalar y, const SkPaint& paint) + SkScalar x, SkScalar y, const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawPosText(const SkDraw&, const void* text, size_t len, const SkScalar pos[], SkScalar constY, - int scalarsPerPos, const SkPaint& paint) + int scalarsPerPos, const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, const SkPath& path, const SkMatrix* matrix, - const SkPaint& paint) + const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} +#ifdef SK_BUILD_FOR_ANDROID virtual void drawPosTextOnPath(const SkDraw& draw, const void* text, size_t len, const SkPoint pos[], const SkPaint& paint, const SkPath& path, - const SkMatrix* matrix) + const SkMatrix* matrix) SK_OVERRIDE {SkASSERT(0);} +#endif virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, const SkPoint verts[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], - int indexCount, const SkPaint& paint) + int indexCount, const SkPaint& paint) SK_OVERRIDE {SkASSERT(0);} virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y, - const SkPaint&) + const SkPaint&) SK_OVERRIDE {SkASSERT(0);} private: - virtual void flush(); + virtual void flush() SK_OVERRIDE; void beginRecording(); void init(); diff --git a/tests/DeferredCanvasTest.cpp b/tests/DeferredCanvasTest.cpp index af2d3004b3..9d3872eaea 100644 --- a/tests/DeferredCanvasTest.cpp +++ b/tests/DeferredCanvasTest.cpp @@ -244,7 +244,7 @@ public: } virtual void drawBitmap(const SkDraw&, const SkBitmap&, const SkIRect*, - const SkMatrix&, const SkPaint&) { + const SkMatrix&, const SkPaint&) SK_OVERRIDE { fDrawBitmapCallCount++; } diff --git a/tests/LayerDrawLooperTest.cpp b/tests/LayerDrawLooperTest.cpp index 7b85fc814a..1df63409a4 100644 --- a/tests/LayerDrawLooperTest.cpp +++ b/tests/LayerDrawLooperTest.cpp @@ -23,7 +23,8 @@ class FakeDevice : public SkDevice { public: FakeDevice() : SkDevice(SkBitmap::kARGB_8888_Config, 100, 100) { } - virtual void drawRect(const SkDraw& draw, const SkRect& r, const SkPaint& paint) { + virtual void drawRect(const SkDraw& draw, const SkRect& r, + const SkPaint& paint) SK_OVERRIDE { fLastMatrix = *draw.fMatrix; SkDevice::drawRect(draw, r, paint); } |