blob: 019539b1917f62251af6bd17ddd093903545c2e6 [file] [log] [blame]
bungeman@google.come8f05922012-08-16 16:13:40 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkDWriteToPath_DEFINED
9#define SkDWriteToPath_DEFINED
10
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkTypes.h"
Ben Wagner6cb6a072019-08-12 18:30:27 -040012#include "src/utils/win/SkObjBase.h"
bungeman@google.come8f05922012-08-16 16:13:40 +000013
14class SkPath;
15
16#include <dwrite.h>
17#include <d2d1.h>
18
19class SkDWriteGeometrySink : public IDWriteGeometrySink {
20private:
21 LONG fRefCount;
22 SkPath* fPath;
23
bungeman@google.come8f05922012-08-16 16:13:40 +000024protected:
25 explicit SkDWriteGeometrySink(SkPath* path);
26 virtual ~SkDWriteGeometrySink();
27
28public:
Ben Wagner6cb6a072019-08-12 18:30:27 -040029 SK_STDMETHODIMP QueryInterface(REFIID iid, void **object) override;
30 SK_STDMETHODIMP_(ULONG) AddRef() override;
31 SK_STDMETHODIMP_(ULONG) Release() override;
bungeman@google.come8f05922012-08-16 16:13:40 +000032
Ben Wagner6cb6a072019-08-12 18:30:27 -040033 SK_STDMETHODIMP_(void) SetFillMode(D2D1_FILL_MODE fillMode) override;
34 SK_STDMETHODIMP_(void) SetSegmentFlags(D2D1_PATH_SEGMENT vertexFlags) override;
35 SK_STDMETHODIMP_(void) BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) override;
36 SK_STDMETHODIMP_(void) AddLines(const D2D1_POINT_2F *points, UINT pointsCount) override;
37 SK_STDMETHODIMP_(void) AddBeziers(const D2D1_BEZIER_SEGMENT *beziers, UINT beziersCount) override;
38 SK_STDMETHODIMP_(void) EndFigure(D2D1_FIGURE_END figureEnd) override;
39 SK_STDMETHODIMP Close() override;
bungeman@google.come8f05922012-08-16 16:13:40 +000040
41 static HRESULT Create(SkPath* path, IDWriteGeometrySink** geometryToPath);
42};
43
44#endif