From cf5c846b4176da82bccb5d5b45788bf0d45a8dd8 Mon Sep 17 00:00:00 2001 From: reed Date: Wed, 20 Jul 2016 12:28:40 -0700 Subject: remove dead methods now that we use specials exclusively for imagefilters BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2164763003 Review-Url: https://codereview.chromium.org/2164763003 --- src/pdf/SkPDFDevice.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/pdf') diff --git a/src/pdf/SkPDFDevice.cpp b/src/pdf/SkPDFDevice.cpp index 8501a03d98..bcbff3285c 100644 --- a/src/pdf/SkPDFDevice.cpp +++ b/src/pdf/SkPDFDevice.cpp @@ -1345,17 +1345,15 @@ void SkPDFDevice::drawVertices(const SkDraw& d, SkCanvas::VertexMode, void SkPDFDevice::drawDevice(const SkDraw& d, SkBaseDevice* device, int x, int y, const SkPaint& paint) { + SkASSERT(!paint.getImageFilter()); + // Check if the source device is really a bitmapdevice (because that's what we returned // from createDevice (likely due to an imagefilter) SkPixmap pmap; if (device->peekPixels(&pmap)) { SkBitmap bitmap; bitmap.installPixels(pmap); - if (paint.getImageFilter()) { - this->drawSpriteWithFilter(d, bitmap, x, y, paint); - } else { - this->drawSprite(d, bitmap, x, y, paint); - } + this->drawSprite(d, bitmap, x, y, paint); return; } -- cgit v1.2.3