| 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 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca
lar xpos[], | 75 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca
lar xpos[], |
| 76 SkScalar constY, const SkPaint&) SK_OVERRIDE; | 76 SkScalar constY, const SkPaint&) SK_OVERRIDE; |
| 77 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP
ath& path, | 77 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP
ath& path, |
| 78 const SkMatrix* matrix, const SkPaint&) SK_OVE
RRIDE; | 78 const SkMatrix* matrix, const SkPaint&) SK_OVE
RRIDE; |
| 79 | 79 |
| 80 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; | 80 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; |
| 81 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE
RRIDE; | 81 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE
RRIDE; |
| 82 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; | 82 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; |
| 83 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE; | 83 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE; |
| 84 | 84 |
| 85 virtual void onDrawPicture(const SkPicture*) SK_OVERRIDE; | 85 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*
) SK_OVERRIDE; |
| 86 | 86 |
| 87 class Iter; | 87 class Iter; |
| 88 | 88 |
| 89 private: | 89 private: |
| 90 typedef SkCanvas INHERITED; | 90 typedef SkCanvas INHERITED; |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 | 93 |
| 94 #endif | 94 #endif |
| OLD | NEW |