OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 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 | 9 |
10 #ifndef SKDEBUGCANVAS_H_ | 10 #ifndef SKDEBUGCANVAS_H_ |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 | 240 |
241 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK
_OVERRIDE; | 241 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK
_OVERRIDE; |
242 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS
calar y, | 242 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS
calar y, |
243 const SkPaint&) SK_OVERRIDE; | 243 const SkPaint&) SK_OVERRIDE; |
244 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin
t pos[], | 244 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin
t pos[], |
245 const SkPaint&) SK_OVERRIDE; | 245 const SkPaint&) SK_OVERRIDE; |
246 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca
lar xpos[], | 246 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca
lar xpos[], |
247 SkScalar constY, const SkPaint&) SK_OVERRIDE; | 247 SkScalar constY, const SkPaint&) SK_OVERRIDE; |
248 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP
ath& path, | 248 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP
ath& path, |
249 const SkMatrix* matrix, const SkPaint&) SK_OVE
RRIDE; | 249 const SkMatrix* matrix, const SkPaint&) SK_OVE
RRIDE; |
| 250 virtual void onDrawTextBlob(const SkTextBlob*, const SkPoint&, const SkPaint
&) SK_OVERRIDE; |
250 virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE; | 251 virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE; |
251 virtual void onPopCull() SK_OVERRIDE; | 252 virtual void onPopCull() SK_OVERRIDE; |
252 | 253 |
253 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; | 254 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; |
254 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE
RRIDE; | 255 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE
RRIDE; |
255 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; | 256 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE; |
256 virtual void onClipRegion(const SkRegion& region, SkRegion::Op) SK_OVERRIDE; | 257 virtual void onClipRegion(const SkRegion& region, SkRegion::Op) SK_OVERRIDE; |
257 | 258 |
258 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*
) SK_OVERRIDE; | 259 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*
) SK_OVERRIDE; |
259 | 260 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 bool lastClipStackData(const SkPath& devPath); | 330 bool lastClipStackData(const SkPath& devPath); |
330 void outputConicPoints(const SkPoint* pts, SkScalar weight); | 331 void outputConicPoints(const SkPoint* pts, SkScalar weight); |
331 void outputPoints(const SkPoint* pts, int count); | 332 void outputPoints(const SkPoint* pts, int count); |
332 void outputPointsCommon(const SkPoint* pts, int count); | 333 void outputPointsCommon(const SkPoint* pts, int count); |
333 void outputScalar(SkScalar num); | 334 void outputScalar(SkScalar num); |
334 | 335 |
335 typedef SkCanvas INHERITED; | 336 typedef SkCanvas INHERITED; |
336 }; | 337 }; |
337 | 338 |
338 #endif | 339 #endif |
OLD | NEW |