aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPathRenderingRenderTargetContext.h
blob: 1ad3a0bd9db0b523238e1d5abe6752117e3dd1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrPathRenderingRenderTargetContext_DEFINED
#define GrPathRenderingRenderTargetContext_DEFINED

#include "GrRenderTargetContext.h"

class GrStencilAndCoverTextContext;

class GrPathRenderingRenderTargetContext : public GrRenderTargetContext {
public:
    void drawText(const GrClip&,  const GrPaint&, const SkPaint&,
                  const SkMatrix& viewMatrix, const char text[], size_t byteLength,
                  SkScalar x, SkScalar y, const SkIRect& clipBounds) override;
    void drawPosText(const GrClip&, const GrPaint&, const SkPaint&,
                     const SkMatrix& viewMatrix, const char text[], size_t byteLength,
                     const SkScalar pos[], int scalarsPerPosition,
                     const SkPoint& offset, const SkIRect& clipBounds) override;
    void drawTextBlob(const GrClip&, const SkPaint&,
                      const SkMatrix& viewMatrix, const SkTextBlob*,
                      SkScalar x, SkScalar y,
                      SkDrawFilter*, const SkIRect& clipBounds) override;
protected:
    GrPathRenderingRenderTargetContext(GrContext* ctx, GrDrawingManager* mgr,
                                       sk_sp<GrRenderTargetProxy> rtp,
                                       sk_sp<SkColorSpace> colorSpace,
                                       const SkSurfaceProps* surfaceProps, GrAuditTrail* at,
                                       GrSingleOwner* so)
        : INHERITED(ctx, mgr, std::move(rtp), std::move(colorSpace), surfaceProps, at, so) {}

private:
    std::unique_ptr<GrStencilAndCoverTextContext> fStencilAndCoverTextContext;

    friend class GrDrawingManager; // for ctor

    typedef GrRenderTargetContext INHERITED;
};

#endif