2 * Copyright 2015 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
8 #ifndef SkSVGDevice_DEFINED
9 #define SkSVGDevice_DEFINED
15 class SkSVGDevice : public SkBaseDevice {
17 static SkBaseDevice* Create(const SkISize& size, SkXMLWriter* writer);
19 virtual SkImageInfo imageInfo() const SK_OVERRIDE;
22 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
23 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
24 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
25 virtual void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint) SK_OVERRIDE;
26 virtual void drawOval(const SkDraw&, const SkRect& oval, const SkPaint& paint) SK_OVERRIDE;
27 virtual void drawRRect(const SkDraw&, const SkRRect& rr, const SkPaint& paint) SK_OVERRIDE;
28 virtual void drawPath(const SkDraw&, const SkPath& path,
30 const SkMatrix* prePathMatrix = NULL,
31 bool pathIsMutable = false) SK_OVERRIDE;
33 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
34 const SkMatrix& matrix, const SkPaint& paint) SK_OVERRIDE;
35 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
36 int x, int y, const SkPaint& paint) SK_OVERRIDE;
37 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
38 const SkRect* srcOrNull, const SkRect& dst,
40 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
42 virtual void drawText(const SkDraw&, const void* text, size_t len,
43 SkScalar x, SkScalar y, const SkPaint& paint) SK_OVERRIDE;
44 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
45 const SkScalar pos[], int scalarsPerPos,
46 const SkPoint& offset, const SkPaint& paint) SK_OVERRIDE;
47 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
48 const SkPath& path, const SkMatrix* matrix,
49 const SkPaint& paint) SK_OVERRIDE;
50 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
51 const SkPoint verts[], const SkPoint texs[],
52 const SkColor colors[], SkXfermode* xmode,
53 const uint16_t indices[], int indexCount,
54 const SkPaint& paint) SK_OVERRIDE;
56 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
57 const SkPaint&) SK_OVERRIDE;
58 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE;
61 SkSVGDevice(const SkISize& size, SkXMLWriter* writer);
62 virtual ~SkSVGDevice();
64 void drawBitmapCommon(const SkDraw& draw, const SkBitmap& bm, const SkPaint& paint);
70 SkAutoTDelete<AutoElement> fRootElement;
71 SkAutoTDelete<ResourceBucket> fResourceBucket;
72 SkBitmap fLegacyBitmap;
75 #endif // SkSVGDevice_DEFINED