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

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

Issue 789033002: Remove SkCanvas::drawBitmapMatrix() (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: non-const canvas ptr 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 | « 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 // Inherited from SkCanvas 158 // Inherited from SkCanvas
159 //////////////////////////////////////////////////////////////////////////////// 159 ////////////////////////////////////////////////////////////////////////////////
160 160
161 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top, 161 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top,
162 const SkPaint*) SK_OVERRIDE; 162 const SkPaint*) SK_OVERRIDE;
163 163
164 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src, 164 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src,
165 const SkRect& dst, const SkPaint* paint, 165 const SkRect& dst, const SkPaint* paint,
166 DrawBitmapRectFlags flags) SK_OVERRIDE; 166 DrawBitmapRectFlags flags) SK_OVERRIDE;
167 167
168 virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&,
169 const SkPaint*) SK_OVERRIDE;
170
171 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, 168 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
172 const SkRect& dst, const SkPaint*) SK_OVERRIDE; 169 const SkRect& dst, const SkPaint*) SK_OVERRIDE;
173 170
174 virtual void drawData(const void*, size_t) SK_OVERRIDE; 171 virtual void drawData(const void*, size_t) SK_OVERRIDE;
175 172
176 virtual void beginCommentGroup(const char* description) SK_OVERRIDE; 173 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
177 174
178 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE; 175 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
179 176
180 virtual void endCommentGroup() SK_OVERRIDE; 177 virtual void endCommentGroup() SK_OVERRIDE;
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 bool lastClipStackData(const SkPath& devPath); 319 bool lastClipStackData(const SkPath& devPath);
323 void outputConicPoints(const SkPoint* pts, SkScalar weight); 320 void outputConicPoints(const SkPoint* pts, SkScalar weight);
324 void outputPoints(const SkPoint* pts, int count); 321 void outputPoints(const SkPoint* pts, int count);
325 void outputPointsCommon(const SkPoint* pts, int count); 322 void outputPointsCommon(const SkPoint* pts, int count);
326 void outputScalar(SkScalar num); 323 void outputScalar(SkScalar num);
327 324
328 typedef SkCanvas INHERITED; 325 typedef SkCanvas INHERITED;
329 }; 326 };
330 327
331 #endif 328 #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