epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * Copyright 2011 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. |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 10 | #ifndef GrPathRenderer_DEFINED |
| 11 | #define GrPathRenderer_DEFINED |
| 12 | |
| 13 | #include "GrDrawTarget.h" |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 14 | #include "GrPathRendererChain.h" |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 15 | #include "GrStencil.h" |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 16 | |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 17 | #include "SkStroke.h" |
bsalomon@google.com | 49313f6 | 2011-09-14 13:54:05 +0000 | [diff] [blame] | 18 | #include "SkTArray.h" |
| 19 | |
reed@google.com | 07f3ee1 | 2011-05-16 17:21:57 +0000 | [diff] [blame] | 20 | class SkPath; |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 21 | |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 22 | struct GrPoint; |
| 23 | |
| 24 | /** |
| 25 | * Base class for drawing paths into a GrDrawTarget. |
robertphillips@google.com | bf5cad4 | 2012-05-10 12:40:40 +0000 | [diff] [blame] | 26 | * |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 27 | * Derived classes can use stages GrPaint::kTotalStages through GrDrawState::kNumStages-1. The |
| 28 | * stages before GrPaint::kTotalStages are reserved for setting up the draw (i.e., textures and |
| 29 | * filter masks). |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 30 | */ |
bsalomon@google.com | 67dc548 | 2011-04-04 18:45:32 +0000 | [diff] [blame] | 31 | class GR_API GrPathRenderer : public GrRefCnt { |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 32 | public: |
reed@google.com | fa35e3d | 2012-06-26 20:16:17 +0000 | [diff] [blame] | 33 | SK_DECLARE_INST_COUNT(GrPathRenderer) |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 34 | |
| 35 | /** |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 36 | * This is called to install custom path renderers in every GrContext at create time. The |
| 37 | * default implementation in GrCreatePathRenderer_none.cpp does not add any additional |
| 38 | * renderers. Link against another implementation to install your own. The first added is the |
| 39 | * most preferred path renderer, second is second most preferred, etc. |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 40 | * |
| 41 | * @param context the context that will use the path renderer |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 42 | * @param prChain the chain to add path renderers to. |
| 43 | */ |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 44 | static void AddPathRenderers(GrContext* context, GrPathRendererChain* prChain); |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 45 | |
| 46 | |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 47 | GrPathRenderer(); |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 48 | |
| 49 | /** |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 50 | * A caller may wish to use a path renderer to draw a path into the stencil buffer. However, |
| 51 | * the path renderer itself may require use of the stencil buffer. Also a path renderer may |
| 52 | * use a GrEffect coverage stage that sets coverage to zero to eliminate pixels that are covered |
| 53 | * by bounding geometry but outside the path. These exterior pixels would still be rendered into |
| 54 | * the stencil. |
| 55 | * |
| 56 | * A GrPathRenderer can provide three levels of support for stenciling paths: |
| 57 | * 1) kNoRestriction: This is the most general. The caller sets up the GrDrawState on the target |
| 58 | * and calls drawPath(). The path is rendered exactly as the draw state |
| 59 | * indicates including support for simultaneous color and stenciling with |
| 60 | * arbitrary stenciling rules. Pixels partially covered by AA paths are |
| 61 | * affected by the stencil settings. |
| 62 | * 2) kStencilOnly: The path renderer cannot apply arbitrary stencil rules nor shade and stencil |
| 63 | * simultaneously. The path renderer does support the stencilPath() function |
| 64 | * which performs no color writes and writes a non-zero stencil value to pixels |
| 65 | * covered by the path. |
| 66 | * 3) kNoSupport: This path renderer cannot be used to stencil the path. |
| 67 | */ |
| 68 | typedef GrPathRendererChain::StencilSupport StencilSupport; |
| 69 | static const StencilSupport kNoSupport_StencilSupport = |
| 70 | GrPathRendererChain::kNoSupport_StencilSupport; |
| 71 | static const StencilSupport kStencilOnly_StencilSupport = |
| 72 | GrPathRendererChain::kStencilOnly_StencilSupport; |
| 73 | static const StencilSupport kNoRestriction_StencilSupport = |
| 74 | GrPathRendererChain::kNoRestriction_StencilSupport; |
| 75 | |
| 76 | /** |
| 77 | * This function is to get the stencil support for a particular path. The path's fill must |
| 78 | * not be an inverse type. |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 79 | * |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 80 | * @param target target that the path will be rendered to |
| 81 | * @param path the path that will be drawn |
| 82 | * @param stroke the stroke information (width, join, cap). |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 83 | */ |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 84 | StencilSupport getStencilSupport(const SkPath& path, |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 85 | const SkStroke& stroke, |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 86 | const GrDrawTarget* target) const { |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 87 | GrAssert(!path.isInverseFillType()); |
| 88 | return this->onGetStencilSupport(path, stroke, target); |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 89 | } |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 90 | |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 91 | /** |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 92 | * Returns true if this path renderer is able to render the path. Returning false allows the |
| 93 | * caller to fallback to another path renderer This function is called when searching for a path |
| 94 | * renderer capable of rendering a path. |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 95 | * |
| 96 | * @param path The path to draw |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 97 | * @param stroke The stroke information (width, join, cap) |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 98 | * @param target The target that the path will be rendered to |
| 99 | * @param antiAlias True if anti-aliasing is required. |
| 100 | * |
| 101 | * @return true if the path can be drawn by this object, false otherwise. |
| 102 | */ |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 103 | virtual bool canDrawPath(const SkPath& path, |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 104 | const SkStroke& stroke, |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 105 | const GrDrawTarget* target, |
| 106 | bool antiAlias) const = 0; |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 107 | /** |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 108 | * Draws the path into the draw target. If getStencilSupport() would return kNoRestriction then |
| 109 | * the subclass must respect the stencil settings of the target's draw state. |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 110 | * |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 111 | * @param path the path to draw. |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 112 | * @param stroke the stroke information (width, join, cap) |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 113 | * @param target target that the path will be rendered to |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 114 | * @param antiAlias true if anti-aliasing is required. |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 115 | */ |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 116 | bool drawPath(const SkPath& path, |
| 117 | const SkStroke& stroke, |
| 118 | GrDrawTarget* target, |
| 119 | bool antiAlias) { |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 120 | GrAssert(this->canDrawPath(path, stroke, target, antiAlias)); |
bsalomon@google.com | b68addd | 2012-12-14 13:36:53 +0000 | [diff] [blame] | 121 | GrAssert(target->drawState()->getStencil().isDisabled() || |
| 122 | kNoRestriction_StencilSupport == this->getStencilSupport(path, stroke, target)); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 123 | return this->onDrawPath(path, stroke, target, antiAlias); |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 124 | } |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 125 | |
| 126 | /** |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 127 | * Draws the path to the stencil buffer. Assume the writable stencil bits are already |
| 128 | * initialized to zero. The pixels inside the path will have non-zero stencil values afterwards. |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 129 | * |
| 130 | * @param path the path to draw. |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 131 | * @param stroke the stroke information (width, join, cap) |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 132 | * @param target target that the path will be rendered to |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 133 | */ |
| 134 | void stencilPath(const SkPath& path, const SkStroke& stroke, GrDrawTarget* target) { |
| 135 | GrAssert(kNoSupport_StencilSupport != this->getStencilSupport(path, stroke, target)); |
| 136 | this->onStencilPath(path, stroke, target); |
| 137 | } |
| 138 | |
| 139 | protected: |
| 140 | /** |
| 141 | * Subclass overrides if it has any limitations of stenciling support. |
| 142 | */ |
| 143 | virtual StencilSupport onGetStencilSupport(const SkPath&, |
| 144 | const SkStroke&, |
| 145 | const GrDrawTarget*) const { |
| 146 | return kNoRestriction_StencilSupport; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Subclass implementation of drawPath() |
bsalomon@google.com | 208236d | 2012-03-12 13:15:33 +0000 | [diff] [blame] | 151 | */ |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 152 | virtual bool onDrawPath(const SkPath& path, |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 153 | const SkStroke& stroke, |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 154 | GrDrawTarget* target, |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 155 | bool antiAlias) = 0; |
tomhudson@google.com | d22b6e4 | 2011-06-24 15:53:40 +0000 | [diff] [blame] | 156 | |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 157 | /** |
| 158 | * Subclass implementation of stencilPath(). Subclass must override iff it ever returns |
| 159 | * kStencilOnly in onGetStencilSupport(). |
| 160 | */ |
| 161 | virtual void onStencilPath(const SkPath& path, const SkStroke& stroke, GrDrawTarget* target) { |
| 162 | GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kPreserve_ASRInit); |
| 163 | GrDrawState* drawState = target->drawState(); |
| 164 | GR_STATIC_CONST_SAME_STENCIL(kIncrementStencil, |
| 165 | kReplace_StencilOp, |
| 166 | kReplace_StencilOp, |
| 167 | kAlways_StencilFunc, |
| 168 | 0xffff, |
| 169 | 0xffff, |
| 170 | 0xffff); |
| 171 | drawState->setStencil(kIncrementStencil); |
| 172 | drawState->enableState(GrDrawState::kNoColorWrites_StateBit); |
| 173 | this->drawPath(path, stroke, target, false); |
| 174 | } |
| 175 | |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 176 | private: |
| 177 | |
| 178 | typedef GrRefCnt INHERITED; |
| 179 | }; |
| 180 | |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 181 | #endif |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 182 | |