| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 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 #ifndef SkPDFCanvas_DEFINED | 7 #ifndef SkPDFCanvas_DEFINED |
| 8 #define SkPDFCanvas_DEFINED | 8 #define SkPDFCanvas_DEFINED |
| 9 | 9 |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 const SkPaint*, | 33 const SkPaint*, |
| 34 SkCanvas::SrcRectConstraint) override; | 34 SkCanvas::SrcRectConstraint) override; |
| 35 | 35 |
| 36 void onDrawBitmapRect(const SkBitmap&, | 36 void onDrawBitmapRect(const SkBitmap&, |
| 37 const SkRect*, | 37 const SkRect*, |
| 38 const SkRect&, | 38 const SkRect&, |
| 39 const SkPaint*, | 39 const SkPaint*, |
| 40 SkCanvas::SrcRectConstraint) override; | 40 SkCanvas::SrcRectConstraint) override; |
| 41 | 41 |
| 42 void onDrawImageLattice(const SkImage*, | 42 void onDrawImageLattice(const SkImage*, |
| 43 const Lattice& lattice, | 43 const Lattice&, |
| 44 const SkRect& dst, | 44 const SkRect&, |
| 45 const SkPaint*) override; | 45 const SkPaint*) override; |
| 46 | 46 |
| 47 void onDrawBitmapLattice(const SkBitmap&, |
| 48 const Lattice&, |
| 49 const SkRect&, |
| 50 const SkPaint*) override; |
| 51 |
| 47 private: | 52 private: |
| 48 typedef SkCanvas INHERITED; | 53 typedef SkCanvas INHERITED; |
| 49 }; | 54 }; |
| 50 | 55 |
| 51 #endif // SkPDFCanvas_DEFINED | 56 #endif // SkPDFCanvas_DEFINED |
| OLD | NEW |