| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 | 8 |
| 9 #ifndef SKDEBUGCANVAS_H_ | 9 #ifndef SKDEBUGCANVAS_H_ |
| 10 #define SKDEBUGCANVAS_H_ | 10 #define SKDEBUGCANVAS_H_ |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec &) override; | 199 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec &) override; |
| 200 | 200 |
| 201 void willRestore() override; | 201 void willRestore() override; |
| 202 | 202 |
| 203 void didConcat(const SkMatrix &) override; | 203 void didConcat(const SkMatrix &) override; |
| 204 | 204 |
| 205 void didSetMatrix(const SkMatrix &) override; | 205 void didSetMatrix(const SkMatrix &) override; |
| 206 | 206 |
| 207 #ifdef SK_EXPERIMENTAL_SHADOWING | 207 #ifdef SK_EXPERIMENTAL_SHADOWING |
| 208 void didTranslateZ(SkScalar) override; | 208 void didTranslateZ(SkScalar) override; |
| 209 #else | 209 #else |
| 210 void didTranslateZ(SkScalar); | 210 void didTranslateZ(SkScalar); |
| 211 #endif | 211 #endif |
| 212 | 212 |
| 213 void onDrawAnnotation(const SkRect&, const char[], SkData*) override; | 213 void onDrawAnnotation(const SkRect&, const char[], SkData*) override; |
| 214 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override; | 214 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override; |
| 215 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y, | 215 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y, |
| 216 const SkPaint&) override; | 216 const SkPaint&) override; |
| 217 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[], | 217 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[], |
| 218 const SkPaint&) override; | 218 const SkPaint&) override; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 GrAuditTrail* getAuditTrail(SkCanvas*); | 318 GrAuditTrail* getAuditTrail(SkCanvas*); |
| 319 | 319 |
| 320 void updatePaintFilterCanvas(); | 320 void updatePaintFilterCanvas(); |
| 321 void drawAndCollectBatches(int n, SkCanvas*); | 321 void drawAndCollectBatches(int n, SkCanvas*); |
| 322 void cleanupAuditTrail(SkCanvas*); | 322 void cleanupAuditTrail(SkCanvas*); |
| 323 | 323 |
| 324 typedef SkCanvas INHERITED; | 324 typedef SkCanvas INHERITED; |
| 325 }; | 325 }; |
| 326 | 326 |
| 327 #endif | 327 #endif |
| OLD | NEW |