blob: 5d1893cf90e78f6d9672b8254414834986f62c3b [file] [log] [blame]
joshualitt96880d92016-02-16 10:36:53 -08001/*
2 * Copyright 2016 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 GrPathRenderingDrawContext_DEFINED
9#define GrPathRenderingDrawContext_DEFINED
10
11#include "GrDrawContext.h"
12
13class GrStencilAndCoverTextContext;
14
15class GrPathRenderingDrawContext : public GrDrawContext {
16public:
17 void drawText(const GrClip&, const GrPaint&, const SkPaint&,
18 const SkMatrix& viewMatrix, const char text[], size_t byteLength,
19 SkScalar x, SkScalar y, const SkIRect& clipBounds) override;
20 void drawPosText(const GrClip&, const GrPaint&, const SkPaint&,
21 const SkMatrix& viewMatrix, const char text[], size_t byteLength,
22 const SkScalar pos[], int scalarsPerPosition,
23 const SkPoint& offset, const SkIRect& clipBounds) override;
24 void drawTextBlob(const GrClip&, const SkPaint&,
25 const SkMatrix& viewMatrix, const SkTextBlob*,
26 SkScalar x, SkScalar y,
27 SkDrawFilter*, const SkIRect& clipBounds) override;
28protected:
robertphillips6c7e3252016-04-27 10:47:51 -070029 GrPathRenderingDrawContext(GrContext* ctx, GrDrawingManager* mgr, sk_sp<GrRenderTarget> rt,
joshualitt96880d92016-02-16 10:36:53 -080030 const SkSurfaceProps* surfaceProps, GrAuditTrail* at,
31 GrSingleOwner* so)
robertphillips6c7e3252016-04-27 10:47:51 -070032 : INHERITED(ctx, mgr, std::move(rt), surfaceProps, at, so) {}
joshualitt96880d92016-02-16 10:36:53 -080033
34private:
joshualitt8db86782016-02-17 05:40:00 -080035 SkAutoTDelete<GrStencilAndCoverTextContext> fStencilAndCoverTextContext;
joshualitt96880d92016-02-16 10:36:53 -080036
37 friend class GrDrawingManager; // for ctor
38
39 typedef GrDrawContext INHERITED;
40};
41
42#endif