| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |