Index: src/pipe/SkGPipeWrite.cpp |
diff --git a/src/pipe/SkGPipeWrite.cpp b/src/pipe/SkGPipeWrite.cpp |
index a5af6c71110be482cc29f2a5009e7ff83ecbd686..9b73c6340ea70e4b28db9502ac0ab021b897ca0d 100644 |
--- a/src/pipe/SkGPipeWrite.cpp |
+++ b/src/pipe/SkGPipeWrite.cpp |
@@ -245,8 +245,6 @@ public: |
virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src, |
const SkRect& dst, const SkPaint* paint, |
DrawBitmapRectFlags flags) SK_OVERRIDE; |
- virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&, |
- const SkPaint*) SK_OVERRIDE; |
virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, |
const SkRect& dst, const SkPaint* paint = NULL) SK_OVERRIDE; |
virtual void drawSprite(const SkBitmap&, int left, int top, |
@@ -820,16 +818,6 @@ void SkGPipeCanvas::drawBitmapRectToRect(const SkBitmap& bm, const SkRect* src, |
} |
} |
-void SkGPipeCanvas::drawBitmapMatrix(const SkBitmap& bm, const SkMatrix& matrix, |
- const SkPaint* paint) { |
- NOTIFY_SETUP(this); |
- size_t opBytesNeeded = matrix.writeToMemory(NULL); |
- |
- if (this->commonDrawBitmap(bm, kDrawBitmapMatrix_DrawOp, 0, opBytesNeeded, paint)) { |
- fWriter.writeMatrix(matrix); |
- } |
-} |
- |
void SkGPipeCanvas::drawBitmapNine(const SkBitmap& bm, const SkIRect& center, |
const SkRect& dst, const SkPaint* paint) { |
NOTIFY_SETUP(this); |