aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/AndroidPathRenderer/GrAndroidPathRenderer.h
blob: 38d2030468507870724a49829ef1df3271f54660 (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

/*
 * Copyright 2012 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "GrPathRenderer.h"


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

    virtual bool canDrawPath(const SkPath& path,
                             const SkStrokeRec& stroke,
                             const GrDrawTarget* target,
                             bool antiAlias) const SK_OVERRIDE;

protected:
    virtual bool onDrawPath(const SkPath& path,
                            const SkStrokeRec& stroke,
                            GrDrawTarget* target,
                            bool antiAlias) SK_OVERRIDE;

private:
    typedef GrPathRenderer INHERITED;
};