Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1468)

Unified Diff: src/svg/SkSVGDevice.cpp

Issue 920513003: Make filters use SkImage instead of SkBitmap Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/svg/SkSVGDevice.cpp
diff --git a/src/svg/SkSVGDevice.cpp b/src/svg/SkSVGDevice.cpp
index a56a6314464fa46c00d2e26cdca758cb4ae79031..6cca152b5d9f888efaf54a3f68be4a4dd7e09880 100644
--- a/src/svg/SkSVGDevice.cpp
+++ b/src/svg/SkSVGDevice.cpp
@@ -641,6 +641,12 @@ void SkSVGDevice::drawSprite(const SkDraw&, const SkBitmap& bitmap,
SkDebugf("unsupported operation: drawSprite()\n");
}
+void SkSVGDevice::drawSprite(const SkDraw&, const SkImage& image,
+ int x, int y, const SkPaint& paint) {
+ // todo
+ SkDebugf("unsupported operation: drawSprite()\n");
+}
+
void SkSVGDevice::drawBitmapRect(const SkDraw&, const SkBitmap&, const SkRect* srcOrNull,
const SkRect& dst, const SkPaint& paint,
SkCanvas::DrawBitmapRectFlags flags) {

Powered by Google App Engine
This is Rietveld 408576698