aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2014-06-10 07:20:48 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-06-10 07:20:48 -0700
commit074fe9df9480016359ded1e9ebaf8624cfc46780 (patch)
tree712c5208b6cc33c8438db2149a3c55cde8697539 /include/core
parent2d2a68c51b4a71bd60760510bf2b2e58bc9890b2 (diff)
Remove legacy drawPicture entry point
With Skia 5713352a (Chromium should no longer need the legacy SkCanvas::drawPicture interface - https://codereview.chromium.org/317193002/) this code should no longer be needed. R=reed@google.com Author: robertphillips@google.com Review URL: https://codereview.chromium.org/324703002
Diffstat (limited to 'include/core')
-rw-r--r--include/core/SkCanvas.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h
index b92b1460fd..d6de257d89 100644
--- a/include/core/SkCanvas.h
+++ b/include/core/SkCanvas.h
@@ -986,12 +986,6 @@ public:
*/
void drawPicture(const SkPicture* picture);
-#ifdef SK_SUPPORT_LEGACY_DRAWPICTURE_API
- virtual void drawPicture(SkPicture& picture) {
- this->drawPicture(&picture);
- }
-#endif
-
enum VertexMode {
kTriangles_VertexMode,
kTriangleStrip_VertexMode,