Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/utils/debugger/SkDebugCanvas.h

Issue 499413002: SkTextBlob plumbing (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: review comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/utils/SkProxyCanvas.cpp ('k') | src/utils/debugger/SkDebugCanvas.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 235
236 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK _OVERRIDE; 236 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK _OVERRIDE;
237 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS calar y, 237 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS calar y,
238 const SkPaint&) SK_OVERRIDE; 238 const SkPaint&) SK_OVERRIDE;
239 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin t pos[], 239 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin t pos[],
240 const SkPaint&) SK_OVERRIDE; 240 const SkPaint&) SK_OVERRIDE;
241 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[], 241 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[],
242 SkScalar constY, const SkPaint&) SK_OVERRIDE; 242 SkScalar constY, const SkPaint&) SK_OVERRIDE;
243 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath& path, 243 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath& path,
244 const SkMatrix* matrix, const SkPaint&) SK_OVE RRIDE; 244 const SkMatrix* matrix, const SkPaint&) SK_OVE RRIDE;
245 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
246 const SkPaint& paint) SK_OVERRIDE;
245 virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE; 247 virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE;
246 virtual void onPopCull() SK_OVERRIDE; 248 virtual void onPopCull() SK_OVERRIDE;
247 249
248 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 250 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
249 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE; 251 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE;
250 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 252 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
251 virtual void onClipRegion(const SkRegion& region, SkRegion::Op) SK_OVERRIDE; 253 virtual void onClipRegion(const SkRegion& region, SkRegion::Op) SK_OVERRIDE;
252 254
253 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* ) SK_OVERRIDE; 255 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* ) SK_OVERRIDE;
254 256
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 bool lastClipStackData(const SkPath& devPath); 326 bool lastClipStackData(const SkPath& devPath);
325 void outputConicPoints(const SkPoint* pts, SkScalar weight); 327 void outputConicPoints(const SkPoint* pts, SkScalar weight);
326 void outputPoints(const SkPoint* pts, int count); 328 void outputPoints(const SkPoint* pts, int count);
327 void outputPointsCommon(const SkPoint* pts, int count); 329 void outputPointsCommon(const SkPoint* pts, int count);
328 void outputScalar(SkScalar num); 330 void outputScalar(SkScalar num);
329 331
330 typedef SkCanvas INHERITED; 332 typedef SkCanvas INHERITED;
331 }; 333 };
332 334
333 #endif 335 #endif
OLDNEW
« no previous file with comments | « src/utils/SkProxyCanvas.cpp ('k') | src/utils/debugger/SkDebugCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698