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 19 matching lines...) Expand all Loading... |
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, |
40 SkCanvas::DrawBitmapRectFlags flags) override; | 40 SK_VIRTUAL_CONSTRAINT_TYPE) override; |
41 | 41 |
42 void drawText(const SkDraw&, const void* text, size_t len, | 42 void drawText(const SkDraw&, const void* text, size_t len, |
43 SkScalar x, SkScalar y, const SkPaint& paint) override; | 43 SkScalar x, SkScalar y, const SkPaint& paint) override; |
44 void drawPosText(const SkDraw&, const void* text, size_t len, | 44 void drawPosText(const SkDraw&, const void* text, size_t len, |
45 const SkScalar pos[], int scalarsPerPos, | 45 const SkScalar pos[], int scalarsPerPos, |
46 const SkPoint& offset, const SkPaint& paint) override; | 46 const SkPoint& offset, const SkPaint& paint) override; |
47 void drawTextOnPath(const SkDraw&, const void* text, size_t len, | 47 void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
48 const SkPath& path, const SkMatrix* matrix, | 48 const SkPath& path, const SkMatrix* matrix, |
49 const SkPaint& paint) override; | 49 const SkPaint& paint) override; |
50 void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, | 50 void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, |
(...skipping 17 matching lines...) Expand all Loading... |
68 | 68 |
69 SkXMLWriter* fWriter; | 69 SkXMLWriter* fWriter; |
70 SkAutoTDelete<AutoElement> fRootElement; | 70 SkAutoTDelete<AutoElement> fRootElement; |
71 SkAutoTDelete<ResourceBucket> fResourceBucket; | 71 SkAutoTDelete<ResourceBucket> fResourceBucket; |
72 SkBitmap fLegacyBitmap; | 72 SkBitmap fLegacyBitmap; |
73 | 73 |
74 typedef SkBaseDevice INHERITED; | 74 typedef SkBaseDevice INHERITED; |
75 }; | 75 }; |
76 | 76 |
77 #endif // SkSVGDevice_DEFINED | 77 #endif // SkSVGDevice_DEFINED |
OLD | NEW |