bsalomon@google.com | 69cc6ad | 2012-01-17 14:25:10 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2012 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
george | 9eb182a | 2014-06-20 12:01:06 -0700 | [diff] [blame] | 9 | #ifndef GrAAConvexPathRenderer_DEFINED |
| 10 | #define GrAAConvexPathRenderer_DEFINED |
bsalomon@google.com | 69cc6ad | 2012-01-17 14:25:10 +0000 | [diff] [blame] | 11 | |
george | 9eb182a | 2014-06-20 12:01:06 -0700 | [diff] [blame] | 12 | #include "GrPathRenderer.h" |
bsalomon@google.com | 69cc6ad | 2012-01-17 14:25:10 +0000 | [diff] [blame] | 13 | |
| 14 | class GrAAConvexPathRenderer : public GrPathRenderer { |
| 15 | public: |
| 16 | GrAAConvexPathRenderer(); |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 17 | |
bsalomon | 0aff2fa | 2015-07-31 06:48:27 -0700 | [diff] [blame] | 18 | private: |
| 19 | bool onCanDrawPath(const CanDrawPathArgs&) const override; |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 20 | |
bsalomon | 0aff2fa | 2015-07-31 06:48:27 -0700 | [diff] [blame] | 21 | bool onDrawPath(const DrawPathArgs&) override; |
bsalomon@google.com | 69cc6ad | 2012-01-17 14:25:10 +0000 | [diff] [blame] | 22 | }; |
george | 9eb182a | 2014-06-20 12:01:06 -0700 | [diff] [blame] | 23 | |
| 24 | #endif |