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

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

Issue 830083002: remove unused drawData (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top, 151 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top,
152 const SkPaint*) SK_OVERRIDE; 152 const SkPaint*) SK_OVERRIDE;
153 153
154 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src, 154 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src,
155 const SkRect& dst, const SkPaint* paint, 155 const SkRect& dst, const SkPaint* paint,
156 DrawBitmapRectFlags flags) SK_OVERRIDE; 156 DrawBitmapRectFlags flags) SK_OVERRIDE;
157 157
158 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, 158 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
159 const SkRect& dst, const SkPaint*) SK_OVERRIDE; 159 const SkRect& dst, const SkPaint*) SK_OVERRIDE;
160 160
161 virtual void drawData(const void*, size_t) SK_OVERRIDE;
162
163 virtual void beginCommentGroup(const char* description) SK_OVERRIDE; 161 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
164 162
165 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE; 163 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
166 164
167 virtual void endCommentGroup() SK_OVERRIDE; 165 virtual void endCommentGroup() SK_OVERRIDE;
168 166
169 virtual void drawOval(const SkRect& oval, const SkPaint&) SK_OVERRIDE; 167 virtual void drawOval(const SkRect& oval, const SkPaint&) SK_OVERRIDE;
170 168
171 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE; 169 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
172 170
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 bool lastClipStackData(const SkPath& devPath); 299 bool lastClipStackData(const SkPath& devPath);
302 void outputConicPoints(const SkPoint* pts, SkScalar weight); 300 void outputConicPoints(const SkPoint* pts, SkScalar weight);
303 void outputPoints(const SkPoint* pts, int count); 301 void outputPoints(const SkPoint* pts, int count);
304 void outputPointsCommon(const SkPoint* pts, int count); 302 void outputPointsCommon(const SkPoint* pts, int count);
305 void outputScalar(SkScalar num); 303 void outputScalar(SkScalar num);
306 304
307 typedef SkCanvas INHERITED; 305 typedef SkCanvas INHERITED;
308 }; 306 };
309 307
310 #endif 308 #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