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

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

Issue 20806003: Plumb in "bleed" flag (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Addressed pipe-specific issues and updated to ToT Created 7 years, 4 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 | Annotate | Revision Log
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 bool doAntiAlias = false) SK_OVERRIDE; 154 bool doAntiAlias = false) SK_OVERRIDE;
155 155
156 virtual bool clipRegion(const SkRegion& region, SkRegion::Op op) SK_OVERRIDE ; 156 virtual bool clipRegion(const SkRegion& region, SkRegion::Op op) SK_OVERRIDE ;
157 157
158 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE; 158 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
159 159
160 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top, 160 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top,
161 const SkPaint*) SK_OVERRIDE; 161 const SkPaint*) SK_OVERRIDE;
162 162
163 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src, 163 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src,
164 const SkRect& dst, const SkPaint*) SK_OVERRIDE ; 164 const SkRect& dst, const SkPaint* paint,
165 DrawBitmapRectFlags flags) SK_OVERRIDE;
165 166
166 virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&, 167 virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&,
167 const SkPaint*) SK_OVERRIDE; 168 const SkPaint*) SK_OVERRIDE;
168 169
169 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, 170 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
170 const SkRect& dst, const SkPaint*) SK_OVERRIDE; 171 const SkRect& dst, const SkPaint*) SK_OVERRIDE;
171 172
172 virtual void drawData(const void*, size_t) SK_OVERRIDE; 173 virtual void drawData(const void*, size_t) SK_OVERRIDE;
173 174
174 virtual void beginCommentGroup(const char* description) SK_OVERRIDE; 175 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 /** 265 /**
265 Applies any panning and zooming the user has specified before 266 Applies any panning and zooming the user has specified before
266 drawing anything else into the canvas. 267 drawing anything else into the canvas.
267 */ 268 */
268 void applyUserTransform(SkCanvas* canvas); 269 void applyUserTransform(SkCanvas* canvas);
269 270
270 typedef SkCanvas INHERITED; 271 typedef SkCanvas INHERITED;
271 }; 272 };
272 273
273 #endif 274 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698