OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 #ifndef SkSVGDevice_DEFINED | 8 #ifndef SkSVGDevice_DEFINED |
9 #define SkSVGDevice_DEFINED | 9 #define SkSVGDevice_DEFINED |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 const SkPaint& paint, | 29 const SkPaint& paint, |
30 const SkMatrix* prePathMatrix = NULL, | 30 const SkMatrix* prePathMatrix = NULL, |
31 bool pathIsMutable = false) override; | 31 bool pathIsMutable = false) override; |
32 | 32 |
33 void drawBitmap(const SkDraw&, const SkBitmap& bitmap, | 33 void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
34 const SkMatrix& matrix, const SkPaint& paint) override; | 34 const SkMatrix& matrix, const SkPaint& paint) override; |
35 void drawSprite(const SkDraw&, const SkBitmap& bitmap, | 35 void drawSprite(const SkDraw&, const SkBitmap& bitmap, |
36 int x, int y, const SkPaint& paint) override; | 36 int x, int y, const SkPaint& paint) override; |
37 void drawBitmapRect(const SkDraw&, const SkBitmap&, | 37 void drawBitmapRect(const SkDraw&, const SkBitmap&, |
38 const SkRect* srcOrNull, const SkRect& dst, | 38 const SkRect* srcOrNull, const SkRect& dst, |
39 const SkPaint& paint, | 39 const SkPaint& paint, SkCanvas::SrcRectConstraint) overr
ide; |
40 SK_VIRTUAL_CONSTRAINT_TYPE) override; | |
41 | 40 |
42 void drawText(const SkDraw&, const void* text, size_t len, | 41 void drawText(const SkDraw&, const void* text, size_t len, |
43 SkScalar x, SkScalar y, const SkPaint& paint) override; | 42 SkScalar x, SkScalar y, const SkPaint& paint) override; |
44 void drawPosText(const SkDraw&, const void* text, size_t len, | 43 void drawPosText(const SkDraw&, const void* text, size_t len, |
45 const SkScalar pos[], int scalarsPerPos, | 44 const SkScalar pos[], int scalarsPerPos, |
46 const SkPoint& offset, const SkPaint& paint) override; | 45 const SkPoint& offset, const SkPaint& paint) override; |
47 void drawTextOnPath(const SkDraw&, const void* text, size_t len, | 46 void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
48 const SkPath& path, const SkMatrix* matrix, | 47 const SkPath& path, const SkMatrix* matrix, |
49 const SkPaint& paint) override; | 48 const SkPaint& paint) override; |
50 void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, | 49 void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, |
(...skipping 17 matching lines...) Expand all Loading... |
68 | 67 |
69 SkXMLWriter* fWriter; | 68 SkXMLWriter* fWriter; |
70 SkAutoTDelete<AutoElement> fRootElement; | 69 SkAutoTDelete<AutoElement> fRootElement; |
71 SkAutoTDelete<ResourceBucket> fResourceBucket; | 70 SkAutoTDelete<ResourceBucket> fResourceBucket; |
72 SkBitmap fLegacyBitmap; | 71 SkBitmap fLegacyBitmap; |
73 | 72 |
74 typedef SkBaseDevice INHERITED; | 73 typedef SkBaseDevice INHERITED; |
75 }; | 74 }; |
76 | 75 |
77 #endif // SkSVGDevice_DEFINED | 76 #endif // SkSVGDevice_DEFINED |
OLD | NEW |