bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +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 | |
| 9 | #ifndef GrBuiltInPathRenderer_DEFINED |
| 10 | #define GrBuiltInPathRenderer_DEFINED |
| 11 | |
| 12 | #include "GrPathRenderer.h" |
| 13 | |
| 14 | class GrContext; |
| 15 | class GrGpu; |
| 16 | |
| 17 | /** |
| 18 | * Uses GrGpu::stencilPath followed by a cover rectangle. This subclass doesn't apply AA; it relies |
| 19 | * on the target having MSAA if AA is desired. |
| 20 | */ |
| 21 | class GrStencilAndCoverPathRenderer : public GrPathRenderer { |
| 22 | public: |
| 23 | |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 24 | static GrPathRenderer* Create(GrContext*); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 25 | |
| 26 | virtual ~GrStencilAndCoverPathRenderer(); |
| 27 | |
robertphillips@google.com | 3e0c64a | 2014-02-10 16:46:23 +0000 | [diff] [blame] | 28 | virtual bool canDrawPath(const SkStrokeRec&, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 29 | const GrDrawTarget*, |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 30 | bool antiAlias) const SK_OVERRIDE; |
| 31 | |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 32 | protected: |
robertphillips@google.com | 3e0c64a | 2014-02-10 16:46:23 +0000 | [diff] [blame] | 33 | virtual StencilSupport onGetStencilSupport(const SkStrokeRec&, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 34 | const GrDrawTarget*) const SK_OVERRIDE; |
| 35 | |
robertphillips@google.com | 3e0c64a | 2014-02-10 16:46:23 +0000 | [diff] [blame] | 36 | virtual bool onDrawPath(const SkStrokeRec&, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 37 | GrDrawTarget*, |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 38 | bool antiAlias) SK_OVERRIDE; |
| 39 | |
robertphillips@google.com | 3e0c64a | 2014-02-10 16:46:23 +0000 | [diff] [blame] | 40 | virtual void onStencilPath(const SkStrokeRec&, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 41 | GrDrawTarget*) SK_OVERRIDE; |
| 42 | |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 43 | private: |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 44 | GrStencilAndCoverPathRenderer(GrGpu*); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 45 | |
| 46 | GrGpu* fGpu; |
| 47 | |
| 48 | typedef GrPathRenderer INHERITED; |
| 49 | }; |
| 50 | |
| 51 | #endif |