OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #ifndef SkNWayCanvas_DEFINED | 9 #ifndef SkNWayCanvas_DEFINED |
10 #define SkNWayCanvas_DEFINED | 10 #define SkNWayCanvas_DEFINED |
11 | 11 |
12 #include "SkCanvas.h" | 12 #include "SkCanvas.h" |
13 | 13 |
14 class SK_API SkNWayCanvas : public SkCanvas { | 14 class SK_API SkNWayCanvas : public SkCanvas { |
15 public: | 15 public: |
16 SkNWayCanvas(int width, int height); | 16 SkNWayCanvas(int width, int height); |
17 virtual ~SkNWayCanvas(); | 17 virtual ~SkNWayCanvas(); |
18 | 18 |
19 virtual void addCanvas(SkCanvas*); | 19 virtual void addCanvas(SkCanvas*); |
20 virtual void removeCanvas(SkCanvas*); | 20 virtual void removeCanvas(SkCanvas*); |
21 virtual void removeAll(); | 21 virtual void removeAll(); |
22 | 22 |
23 /////////////////////////////////////////////////////////////////////////// | 23 /////////////////////////////////////////////////////////////////////////// |
24 // These are forwarded to the N canvases we're referencing | 24 // These are forwarded to the N canvases we're referencing |
25 | 25 |
26 virtual void clear(SkColor) SK_OVERRIDE; | |
27 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE; | 26 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE; |
28 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[], | 27 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[], |
29 const SkPaint&) SK_OVERRIDE; | 28 const SkPaint&) SK_OVERRIDE; |
30 virtual void drawRect(const SkRect&, const SkPaint&) SK_OVERRIDE; | 29 virtual void drawRect(const SkRect&, const SkPaint&) SK_OVERRIDE; |
31 virtual void drawOval(const SkRect&, const SkPaint&) SK_OVERRIDE; | 30 virtual void drawOval(const SkRect&, const SkPaint&) SK_OVERRIDE; |
32 virtual void drawRRect(const SkRRect&, const SkPaint&) SK_OVERRIDE; | 31 virtual void drawRRect(const SkRRect&, const SkPaint&) SK_OVERRIDE; |
33 virtual void drawPath(const SkPath& path, const SkPaint&) SK_OVERRIDE; | 32 virtual void drawPath(const SkPath& path, const SkPaint&) SK_OVERRIDE; |
34 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, | 33 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, |
35 const SkPaint*) SK_OVERRIDE; | 34 const SkPaint*) SK_OVERRIDE; |
36 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src, | 35 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src, |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*
) SK_OVERRIDE; | 93 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*
) SK_OVERRIDE; |
95 | 94 |
96 class Iter; | 95 class Iter; |
97 | 96 |
98 private: | 97 private: |
99 typedef SkCanvas INHERITED; | 98 typedef SkCanvas INHERITED; |
100 }; | 99 }; |
101 | 100 |
102 | 101 |
103 #endif | 102 #endif |
OLD | NEW |