aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrTesselatedPathRenderer.h
blob: 18cead28264dff1bbcafedb1f66abd5306dd5af4 (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

/*
 * 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 GrTesselatedPathRenderer_DEFINED
#define GrTesselatedPathRenderer_DEFINED

#include "GrPathRenderer.h"

class GrTesselatedPathRenderer : public GrPathRenderer {
public:
    GrTesselatedPathRenderer();

    virtual void drawPath(GrDrawTarget::StageBitfield stages);
    virtual bool canDrawPath(const GrDrawTarget::Caps& targetCaps,
                             const GrPath& path,
                             GrPathFill fill,
                             bool antiAlias) const SK_OVERRIDE;
    virtual void drawPathToStencil() SK_OVERRIDE;
};

#endif