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

Side by Side Diff: include/utils/SkDumpCanvas.h

Issue 794263002: Cull pushCull and popCull from Skia. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix debugger Created 6 years 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 | « include/core/SkCanvas.h ('k') | src/core/SkCanvas.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 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 #ifndef SkDumpCanvas_DEFINED 8 #ifndef SkDumpCanvas_DEFINED
9 #define SkDumpCanvas_DEFINED 9 #define SkDumpCanvas_DEFINED
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 const SkPaint&) SK_OVERRIDE; 114 const SkPaint&) SK_OVERRIDE;
115 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[], 115 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[],
116 SkScalar constY, const SkPaint&) SK_OVERRIDE; 116 SkScalar constY, const SkPaint&) SK_OVERRIDE;
117 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath& path, 117 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath& path,
118 const SkMatrix* matrix, const SkPaint&) SK_OVE RRIDE; 118 const SkMatrix* matrix, const SkPaint&) SK_OVE RRIDE;
119 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, 119 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
120 const SkPaint& paint) SK_OVERRIDE; 120 const SkPaint& paint) SK_OVERRIDE;
121 virtual void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4], 121 virtual void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
122 const SkPoint texCoords[4], SkXfermode* xmode, 122 const SkPoint texCoords[4], SkXfermode* xmode,
123 const SkPaint& paint) SK_OVERRIDE; 123 const SkPaint& paint) SK_OVERRIDE;
124 virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE;
125 virtual void onPopCull() SK_OVERRIDE;
126 124
127 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 125 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
128 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE; 126 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE;
129 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 127 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
130 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE; 128 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
131 129
132 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* ) SK_OVERRIDE; 130 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* ) SK_OVERRIDE;
133 131
134 static const char* EdgeStyleToAAString(ClipEdgeStyle edgeStyle); 132 static const char* EdgeStyleToAAString(ClipEdgeStyle edgeStyle);
135 133
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 public: 165 public:
168 SkDebugfDumper(); 166 SkDebugfDumper();
169 167
170 private: 168 private:
171 typedef SkFormatDumper INHERITED; 169 typedef SkFormatDumper INHERITED;
172 }; 170 };
173 171
174 #endif 172 #endif
175 173
176 #endif 174 #endif
OLDNEW
« no previous file with comments | « include/core/SkCanvas.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698