blob: 4fdcb12a265be8f54167da3551ed86b7ce64abe2 [file] [log] [blame]
ethannicholas1a1b3ac2015-06-10 12:11:17 -07001/*
2 * Copyright 2015 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 GrAALinearizingConvexPathRenderer_DEFINED
9#define GrAALinearizingConvexPathRenderer_DEFINED
10
11#include "GrPathRenderer.h"
12
13class GrAALinearizingConvexPathRenderer : public GrPathRenderer {
14public:
15 GrAALinearizingConvexPathRenderer();
16
bsalomon0aff2fa2015-07-31 06:48:27 -070017private:
Chris Dalton5ed44232017-09-07 13:22:46 -060018 CanDrawPath onCanDrawPath(const CanDrawPathArgs&) const override;
ethannicholas1a1b3ac2015-06-10 12:11:17 -070019
bsalomon0aff2fa2015-07-31 06:48:27 -070020 bool onDrawPath(const DrawPathArgs&) override;
ethannicholas1a1b3ac2015-06-10 12:11:17 -070021};
22
23#endif