blob: 417c7f0d07c435ce2af3ca819a09ffb8baac5c40 [file] [log] [blame]
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkDWriteToPath_DEFINED
#define SkDWriteToPath_DEFINED
#include "SkTypes.h"
class SkPath;
#include <dwrite.h>
#include <d2d1.h>
class SkDWriteGeometrySink : public IDWriteGeometrySink {
private:
LONG fRefCount;
SkPath* fPath;
SkDWriteGeometrySink(const SkDWriteGeometrySink&);
SkDWriteGeometrySink& operator=(const SkDWriteGeometrySink&);
protected:
explicit SkDWriteGeometrySink(SkPath* path);
virtual ~SkDWriteGeometrySink();
public:
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, void **object) override;
ULONG STDMETHODCALLTYPE AddRef(void) override;
ULONG STDMETHODCALLTYPE Release(void) override;
void STDMETHODCALLTYPE SetFillMode(D2D1_FILL_MODE fillMode) override;
void STDMETHODCALLTYPE SetSegmentFlags(D2D1_PATH_SEGMENT vertexFlags) override;
void STDMETHODCALLTYPE BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) override;
void STDMETHODCALLTYPE AddLines(const D2D1_POINT_2F *points, UINT pointsCount) override;
void STDMETHODCALLTYPE AddBeziers(const D2D1_BEZIER_SEGMENT *beziers, UINT beziersCount) override;
void STDMETHODCALLTYPE EndFigure(D2D1_FIGURE_END figureEnd) override;
HRESULT STDMETHODCALLTYPE Close() override;
static HRESULT Create(SkPath* path, IDWriteGeometrySink** geometryToPath);
};
#endif