aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkCanvas.h
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-15 12:10:47 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-15 12:10:47 +0000
commit49794c0cbd934545854a7b4091af5af7dfb46570 (patch)
tree19bd358cb5158e6608303dfa32be547e06a58b51 /include/core/SkCanvas.h
parent6005aeb3aa11e2dafb15000f5a1ba5c8c9af1fad (diff)
make commonBitmap un-virtual. That was a leftover from previous subclassing
I think. git-svn-id: http://skia.googlecode.com/svn/trunk@3394 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/SkCanvas.h')
-rw-r--r--include/core/SkCanvas.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h
index 1b9f0558ba..e5cd8ae089 100644
--- a/include/core/SkCanvas.h
+++ b/include/core/SkCanvas.h
@@ -942,13 +942,13 @@ protected:
virtual SkCanvas* canvasForDrawIter();
// all of the drawBitmap variants call this guy
- virtual void commonDrawBitmap(const SkBitmap&, const SkIRect*,
- const SkMatrix&, const SkPaint& paint);
+ void commonDrawBitmap(const SkBitmap&, const SkIRect*, const SkMatrix&,
+ const SkPaint& paint);
// Clip rectangle bounds. Called internally by saveLayer.
// returns false if the entire rectangle is entirely clipped out
bool clipRectBounds(const SkRect* bounds, SaveFlags flags,
- SkIRect* intersection);
+ SkIRect* intersection);
private:
class MCRec;