| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |