diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-10-22 13:19:12 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-10-22 13:19:12 +0000 |
commit | ad254fee73ad70a45acba69dccb9b65f88c3a92a (patch) | |
tree | 12b18a7e1d9f810991864d61120bd74a7d72a1b1 /experimental/PdfViewer | |
parent | db6fa1729a5117e1bdacd6c237373812cd44a7c0 (diff) |
If the path is a rect, call drawRect to raster the geometry in SkCanvas::drawPath to get better performance.
Committed: http://code.google.com/p/skia/source/detail?r=11842
R=bsalomon@google.com
Review URL: https://codereview.chromium.org/23484007
git-svn-id: http://skia.googlecode.com/svn/trunk@11904 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/PdfViewer')
-rw-r--r-- | experimental/PdfViewer/SkNulCanvas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/experimental/PdfViewer/SkNulCanvas.h b/experimental/PdfViewer/SkNulCanvas.h index 8ec2d32d0f..c43ea82918 100644 --- a/experimental/PdfViewer/SkNulCanvas.h +++ b/experimental/PdfViewer/SkNulCanvas.h @@ -55,10 +55,8 @@ public: virtual void drawPaint(const SkPaint& paint) {} virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint) {} - virtual void drawRect(const SkRect& rect, const SkPaint& paint) {} virtual void drawOval(const SkRect& oval, const SkPaint&) {} virtual void drawRRect(const SkRRect& rrect, const SkPaint& paint) {} - virtual void drawPath(const SkPath& path, const SkPaint& paint) {} virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, const SkPaint* paint = NULL) {} virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src, @@ -95,6 +93,8 @@ public: virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) {return NULL;} protected: + virtual void onDrawRect(const SkRect& rect, const SkPaint& paint) {} + virtual void onDrawPath(const SkPath& path, const SkPaint& paint) {} virtual SkCanvas* canvasForDrawIter() {return NULL;} virtual SkBaseDevice* setDevice(SkBaseDevice* device) {return NULL;} |