aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu/src/GrDefaultPathRenderer.h
blob: dd5964122d00a0f50a989c0c063b9da70c295213 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrDefaultPathRenderer_DEFINED
#define GrDefaultPathRenderer_DEFINED

#include "GrPathRenderer.h"
#include "SkTemplates.h"

/**
 *  Subclass that renders the path using the stencil buffer to resolve fill
 *  rules (e.g. winding, even-odd)
 */
class GR_API GrDefaultPathRenderer : public GrPathRenderer {
public:
    GrDefaultPathRenderer(bool separateStencilSupport,
                          bool stencilWrapOpsSupport);

    virtual bool canDrawPath(const GrDrawTarget* target,
                             const SkPath& path,
                             GrPathFill fill) const { return true; }

    virtual bool requiresStencilPass(const GrDrawTarget* target,
                                     const SkPath& path,
                                     GrPathFill fill) const;

    virtual void drawPath(GrDrawTarget::StageBitfield stages);
    virtual void drawPathToStencil();

protected:
    virtual void pathWillClear();

private:

    void onDrawPath(GrDrawTarget::StageBitfield stages, bool stencilOnly);

    bool createGeom(GrScalar srcSpaceTol,
                    GrDrawTarget::StageBitfield stages);

    bool    fSeparateStencil;
    bool    fStencilWrapOps;

    int                         fSubpathCount;
    SkAutoSTMalloc<8, uint16_t> fSubpathVertCount;
    int                         fIndexCnt;
    int                         fVertexCnt;
    GrScalar                    fPreviousSrcTol;
    GrDrawTarget::StageBitfield fPreviousStages;
    GrPrimitiveType             fPrimitiveType;
    bool                        fUseIndexedDraw;

    typedef GrPathRenderer INHERITED;
};

#endif