robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +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 | #include "GrClipMaskManager.h" |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 10 | #include "effects/GrTextureDomainEffect.h" |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 11 | #include "GrGpu.h" |
| 12 | #include "GrRenderTarget.h" |
| 13 | #include "GrStencilBuffer.h" |
| 14 | #include "GrPathRenderer.h" |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 15 | #include "GrPaint.h" |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 16 | #include "SkRasterClip.h" |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 17 | #include "SkStroke.h" |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 18 | #include "GrAAConvexPathRenderer.h" |
| 19 | #include "GrAAHairLinePathRenderer.h" |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 20 | #include "GrSWMaskHelper.h" |
robertphillips@google.com | 46a8600 | 2012-08-08 10:42:44 +0000 | [diff] [blame] | 21 | #include "GrCacheID.h" |
| 22 | |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 23 | #include "SkTLazy.h" |
| 24 | |
robertphillips@google.com | 46a8600 | 2012-08-08 10:42:44 +0000 | [diff] [blame] | 25 | GR_DEFINE_RESOURCE_CACHE_DOMAIN(GrClipMaskManager, GetAlphaMaskDomain) |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 26 | |
robertphillips@google.com | ba998f2 | 2012-10-12 11:33:56 +0000 | [diff] [blame] | 27 | #define GR_AA_CLIP 1 |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 28 | |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 29 | typedef SkClipStack::Element Element; |
bsalomon@google.com | 51a6286 | 2012-11-26 21:19:43 +0000 | [diff] [blame] | 30 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 31 | using namespace GrReducedClip; |
| 32 | |
bsalomon@google.com | 51a6286 | 2012-11-26 21:19:43 +0000 | [diff] [blame] | 33 | //////////////////////////////////////////////////////////////////////////////// |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 34 | namespace { |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 35 | // set up the draw state to enable the aa clipping mask. Besides setting up the |
bsalomon@google.com | 08283af | 2012-10-26 13:01:20 +0000 | [diff] [blame] | 36 | // stage matrix this also alters the vertex layout |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 37 | void setup_drawstate_aaclip(GrGpu* gpu, |
| 38 | GrTexture* result, |
robertphillips@google.com | 7b11289 | 2012-07-31 15:18:21 +0000 | [diff] [blame] | 39 | const GrIRect &devBound) { |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 40 | GrDrawState* drawState = gpu->drawState(); |
| 41 | GrAssert(drawState); |
| 42 | |
bsalomon@google.com | dfdb7e5 | 2012-10-16 15:19:45 +0000 | [diff] [blame] | 43 | static const int kMaskStage = GrPaint::kTotalStages+1; |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 44 | |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 45 | SkMatrix mat; |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 46 | mat.setIDiv(result->width(), result->height()); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 47 | mat.preTranslate(SkIntToScalar(-devBound.fLeft), |
robertphillips@google.com | 7b11289 | 2012-07-31 15:18:21 +0000 | [diff] [blame] | 48 | SkIntToScalar(-devBound.fTop)); |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 49 | mat.preConcat(drawState->getViewMatrix()); |
| 50 | |
bsalomon@google.com | 08283af | 2012-10-26 13:01:20 +0000 | [diff] [blame] | 51 | drawState->stage(kMaskStage)->reset(); |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 52 | |
| 53 | SkIRect domainTexels = SkIRect::MakeWH(devBound.width(), devBound.height()); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 54 | // This could be a long-lived effect that is cached with the alpha-mask. |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 55 | drawState->stage(kMaskStage)->setEffect( |
| 56 | GrTextureDomainEffect::Create(result, |
| 57 | mat, |
| 58 | GrTextureDomainEffect::MakeTexelDomain(result, domainTexels), |
| 59 | GrTextureDomainEffect::kDecal_WrapMode))->unref(); |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 60 | } |
| 61 | |
robertphillips@google.com | 8a4fc40 | 2012-05-24 12:42:24 +0000 | [diff] [blame] | 62 | bool path_needs_SW_renderer(GrContext* context, |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 63 | GrGpu* gpu, |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 64 | const SkPath& origPath, |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 65 | const SkStroke& stroke, |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 66 | bool doAA) { |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 67 | // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer |
| 68 | SkTCopyOnFirstWrite<SkPath> path(origPath); |
| 69 | if (path->isInverseFillType()) { |
| 70 | path.writable()->toggleInverseFillType(); |
| 71 | } |
robertphillips@google.com | 8a4fc40 | 2012-05-24 12:42:24 +0000 | [diff] [blame] | 72 | // last (false) parameter disallows use of the SW path renderer |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 73 | GrPathRendererChain::DrawType type = doAA ? |
| 74 | GrPathRendererChain::kColorAntiAlias_DrawType : |
| 75 | GrPathRendererChain::kColor_DrawType; |
| 76 | |
| 77 | return NULL == context->getPathRenderer(*path, stroke, gpu, false, type); |
robertphillips@google.com | a6f11c4 | 2012-07-23 17:39:44 +0000 | [diff] [blame] | 78 | } |
| 79 | |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 80 | } |
| 81 | |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 82 | /* |
| 83 | * This method traverses the clip stack to see if the GrSoftwarePathRenderer |
| 84 | * will be used on any element. If so, it returns true to indicate that the |
| 85 | * entire clip should be rendered in SW and then uploaded en masse to the gpu. |
| 86 | */ |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 87 | bool GrClipMaskManager::useSWOnlyPath(const ElementList& elements) { |
robertphillips@google.com | a3e5c63 | 2012-05-22 18:09:26 +0000 | [diff] [blame] | 88 | |
robertphillips@google.com | 8a4fc40 | 2012-05-24 12:42:24 +0000 | [diff] [blame] | 89 | // TODO: generalize this function so that when |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 90 | // a clip gets complex enough it can just be done in SW regardless |
| 91 | // of whether it would invoke the GrSoftwarePathRenderer. |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 92 | SkStroke stroke; |
| 93 | stroke.setDoFill(true); |
skia.committer@gmail.com | d21444a | 2012-12-07 02:01:25 +0000 | [diff] [blame] | 94 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 95 | for (ElementList::Iter iter(elements.headIter()); iter.get(); iter.next()) { |
| 96 | const Element* element = iter.get(); |
robertphillips@google.com | f69a11b | 2012-06-15 13:58:07 +0000 | [diff] [blame] | 97 | // rects can always be drawn directly w/o using the software path |
| 98 | // so only paths need to be checked |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 99 | if (Element::kPath_Type == element->getType() && |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 100 | path_needs_SW_renderer(this->getContext(), fGpu, |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 101 | element->getPath(), |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 102 | stroke, |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 103 | element->isAA())) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 104 | return true; |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 105 | } |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 106 | } |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 107 | return false; |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 108 | } |
| 109 | |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 110 | //////////////////////////////////////////////////////////////////////////////// |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 111 | // sort out what kind of clip mask needs to be created: alpha, stencil, |
| 112 | // scissor, or entirely software |
robertphillips@google.com | beb1af7 | 2012-07-26 18:52:16 +0000 | [diff] [blame] | 113 | bool GrClipMaskManager::setupClipping(const GrClipData* clipDataIn) { |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 114 | fCurrClipMaskType = kNone_ClipMaskType; |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 115 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 116 | ElementList elements(16); |
| 117 | InitialState initialState; |
| 118 | SkIRect clipSpaceIBounds; |
| 119 | bool requiresAA; |
| 120 | bool isRect = false; |
| 121 | |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 122 | GrDrawState* drawState = fGpu->drawState(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 123 | |
| 124 | const GrRenderTarget* rt = drawState->getRenderTarget(); |
| 125 | // GrDrawTarget should have filtered this for us |
| 126 | GrAssert(NULL != rt); |
| 127 | |
| 128 | bool ignoreClip = !drawState->isClipState() || clipDataIn->fClipStack->isWideOpen(); |
| 129 | |
| 130 | if (!ignoreClip) { |
| 131 | SkIRect clipSpaceRTIBounds = SkIRect::MakeWH(rt->width(), rt->height()); |
| 132 | clipSpaceRTIBounds.offset(clipDataIn->fOrigin); |
| 133 | ReduceClipStack(*clipDataIn->fClipStack, |
| 134 | clipSpaceRTIBounds, |
| 135 | &elements, |
| 136 | &initialState, |
| 137 | &clipSpaceIBounds, |
| 138 | &requiresAA); |
| 139 | if (elements.isEmpty()) { |
| 140 | if (kAllIn_InitialState == initialState) { |
| 141 | ignoreClip = clipSpaceIBounds == clipSpaceRTIBounds; |
| 142 | isRect = true; |
| 143 | } else { |
| 144 | return false; |
| 145 | } |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | if (ignoreClip) { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 150 | fGpu->disableScissor(); |
| 151 | this->setGpuStencil(); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 152 | return true; |
| 153 | } |
| 154 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 155 | #if GR_AA_CLIP |
| 156 | // TODO: catch isRect && requiresAA and use clip planes if available rather than a mask. |
robertphillips@google.com | b99225c | 2012-07-24 18:20:10 +0000 | [diff] [blame] | 157 | |
robertphillips@google.com | a3e5c63 | 2012-05-22 18:09:26 +0000 | [diff] [blame] | 158 | // If MSAA is enabled we can do everything in the stencil buffer. |
robertphillips@google.com | b99225c | 2012-07-24 18:20:10 +0000 | [diff] [blame] | 159 | if (0 == rt->numSamples() && requiresAA) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 160 | int32_t genID = clipDataIn->fClipStack->getTopmostGenID(); |
robertphillips@google.com | a72eef3 | 2012-05-01 17:22:59 +0000 | [diff] [blame] | 161 | GrTexture* result = NULL; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 162 | |
| 163 | if (this->useSWOnlyPath(elements)) { |
| 164 | // The clip geometry is complex enough that it will be more efficient to create it |
| 165 | // entirely in software |
| 166 | result = this->createSoftwareClipMask(genID, |
| 167 | initialState, |
| 168 | elements, |
| 169 | clipSpaceIBounds); |
| 170 | } else { |
| 171 | result = this->createAlphaClipMask(genID, |
| 172 | initialState, |
| 173 | elements, |
| 174 | clipSpaceIBounds); |
| 175 | } |
| 176 | |
| 177 | if (NULL != result) { |
| 178 | // The mask's top left coord should be pinned to the rounded-out top left corner of |
| 179 | // clipSpace bounds. We determine the mask's position WRT to the render target here. |
| 180 | SkIRect rtSpaceMaskBounds = clipSpaceIBounds; |
| 181 | rtSpaceMaskBounds.offset(-clipDataIn->fOrigin); |
| 182 | setup_drawstate_aaclip(fGpu, result, rtSpaceMaskBounds); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 183 | fGpu->disableScissor(); |
| 184 | this->setGpuStencil(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 185 | return true; |
| 186 | } |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 187 | // if alpha clip mask creation fails fall through to the non-AA code paths |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 188 | } |
| 189 | #endif // GR_AA_CLIP |
| 190 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 191 | // Either a hard (stencil buffer) clip was explicitly requested or an anti-aliased clip couldn't |
| 192 | // be created. In either case, free up the texture in the anti-aliased mask cache. |
| 193 | // TODO: this may require more investigation. Ganesh performs a lot of utility draws (e.g., |
| 194 | // clears, InOrderDrawBuffer playbacks) that hit the stencil buffer path. These may be |
| 195 | // "incorrectly" clearing the AA cache. |
robertphillips@google.com | 5acc0e3 | 2012-05-17 12:01:02 +0000 | [diff] [blame] | 196 | fAACache.reset(); |
| 197 | |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 198 | // If the clip is a rectangle then just set the scissor. Otherwise, create |
| 199 | // a stencil mask. |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 200 | if (isRect) { |
| 201 | SkIRect clipRect = clipSpaceIBounds; |
| 202 | clipRect.offset(-clipDataIn->fOrigin); |
| 203 | fGpu->enableScissor(clipRect); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 204 | this->setGpuStencil(); |
| 205 | return true; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 206 | } |
| 207 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 208 | // use the stencil clip if we can't represent the clip as a rectangle. |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 209 | SkIPoint clipSpaceToStencilSpaceOffset = -clipDataIn->fOrigin; |
| 210 | this->createStencilClipMask(initialState, |
| 211 | elements, |
| 212 | clipSpaceIBounds, |
| 213 | clipSpaceToStencilSpaceOffset); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 214 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 215 | // This must occur after createStencilClipMask. That function may change the scissor. Also, it |
| 216 | // only guarantees that the stencil mask is correct within the bounds it was passed, so we must |
| 217 | // use both stencil and scissor test to the bounds for the final draw. |
| 218 | SkIRect scissorSpaceIBounds(clipSpaceIBounds); |
| 219 | scissorSpaceIBounds.offset(clipSpaceToStencilSpaceOffset); |
| 220 | fGpu->enableScissor(scissorSpaceIBounds); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 221 | this->setGpuStencil(); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 222 | return true; |
| 223 | } |
| 224 | |
| 225 | #define VISUALIZE_COMPLEX_CLIP 0 |
| 226 | |
| 227 | #if VISUALIZE_COMPLEX_CLIP |
tfarina@chromium.org | 223137f | 2012-11-21 22:38:36 +0000 | [diff] [blame] | 228 | #include "SkRandom.h" |
| 229 | SkRandom gRandom; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 230 | #define SET_RANDOM_COLOR drawState->setColor(0xff000000 | gRandom.nextU()); |
| 231 | #else |
| 232 | #define SET_RANDOM_COLOR |
| 233 | #endif |
| 234 | |
| 235 | namespace { |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 236 | |
| 237 | //////////////////////////////////////////////////////////////////////////////// |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 238 | // set up the OpenGL blend function to perform the specified |
| 239 | // boolean operation for alpha clip mask creation |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 240 | void setup_boolean_blendcoeffs(GrDrawState* drawState, SkRegion::Op op) { |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 241 | |
| 242 | switch (op) { |
| 243 | case SkRegion::kReplace_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 244 | drawState->setBlendFunc(kOne_GrBlendCoeff, kZero_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 245 | break; |
| 246 | case SkRegion::kIntersect_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 247 | drawState->setBlendFunc(kDC_GrBlendCoeff, kZero_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 248 | break; |
| 249 | case SkRegion::kUnion_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 250 | drawState->setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 251 | break; |
| 252 | case SkRegion::kXOR_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 253 | drawState->setBlendFunc(kIDC_GrBlendCoeff, kISC_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 254 | break; |
| 255 | case SkRegion::kDifference_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 256 | drawState->setBlendFunc(kZero_GrBlendCoeff, kISC_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 257 | break; |
| 258 | case SkRegion::kReverseDifference_Op: |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 259 | drawState->setBlendFunc(kIDC_GrBlendCoeff, kZero_GrBlendCoeff); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 260 | break; |
| 261 | default: |
| 262 | GrAssert(false); |
| 263 | break; |
| 264 | } |
| 265 | } |
| 266 | |
bsalomon@google.com | 2e0c79f | 2012-11-12 13:38:57 +0000 | [diff] [blame] | 267 | //////////////////////////////////////////////////////////////////////////////// |
| 268 | bool draw_path_in_software(GrContext* context, |
| 269 | GrGpu* gpu, |
| 270 | const SkPath& path, |
bsalomon@google.com | 2e0c79f | 2012-11-12 13:38:57 +0000 | [diff] [blame] | 271 | bool doAA, |
| 272 | const GrIRect& resultBounds) { |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 273 | SkStroke stroke; |
| 274 | stroke.setDoFill(true); |
bsalomon@google.com | 2e0c79f | 2012-11-12 13:38:57 +0000 | [diff] [blame] | 275 | |
| 276 | SkAutoTUnref<GrTexture> texture( |
| 277 | GrSWMaskHelper::DrawPathMaskToTexture(context, path, |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 278 | stroke, |
| 279 | resultBounds, |
bsalomon@google.com | 2e0c79f | 2012-11-12 13:38:57 +0000 | [diff] [blame] | 280 | doAA, NULL)); |
| 281 | if (NULL == texture) { |
| 282 | return false; |
| 283 | } |
| 284 | |
| 285 | // The ClipMaskManager accumulates the clip mask in the UL corner |
| 286 | GrIRect rect = GrIRect::MakeWH(resultBounds.width(), resultBounds.height()); |
| 287 | |
| 288 | GrSWMaskHelper::DrawToTargetWithPathMask(texture, gpu, rect); |
| 289 | |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 290 | GrAssert(!path.isInverseFillType()); |
bsalomon@google.com | 2e0c79f | 2012-11-12 13:38:57 +0000 | [diff] [blame] | 291 | return true; |
| 292 | } |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 293 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 294 | |
| 295 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 296 | bool GrClipMaskManager::drawClipShape(GrTexture* target, const SkClipStack::Element* element) { |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 297 | GrDrawState* drawState = fGpu->drawState(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 298 | GrAssert(NULL != drawState); |
| 299 | |
| 300 | drawState->setRenderTarget(target->asRenderTarget()); |
| 301 | |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 302 | switch (element->getType()) { |
| 303 | case Element::kRect_Type: |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 304 | // TODO: Do rects directly to the accumulator using a aa-rect GrEffect that covers the |
| 305 | // entire mask bounds and writes 0 outside the rect. |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 306 | if (element->isAA()) { |
bsalomon@google.com | cf939ae | 2012-12-13 19:59:23 +0000 | [diff] [blame] | 307 | getContext()->getAARectRenderer()->fillAARect(fGpu, |
| 308 | fGpu, |
| 309 | element->getRect(), |
| 310 | false); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 311 | } else { |
| 312 | fGpu->drawSimpleRect(element->getRect(), NULL); |
| 313 | } |
| 314 | return true; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 315 | case Element::kPath_Type: { |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 316 | SkTCopyOnFirstWrite<SkPath> path(element->getPath()); |
| 317 | if (path->isInverseFillType()) { |
| 318 | path.writable()->toggleInverseFillType(); |
| 319 | } |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 320 | SkStroke stroke; |
| 321 | stroke.setDoFill(true); |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 322 | GrPathRendererChain::DrawType type = element->isAA() ? |
| 323 | GrPathRendererChain::kColorAntiAlias_DrawType : |
| 324 | GrPathRendererChain::kColor_DrawType; |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 325 | GrPathRenderer* pr = this->getContext()->getPathRenderer(*path, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 326 | stroke, |
| 327 | fGpu, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 328 | false, |
| 329 | type); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 330 | if (NULL == pr) { |
| 331 | return false; |
| 332 | } |
| 333 | pr->drawPath(element->getPath(), stroke, fGpu, element->isAA()); |
| 334 | break; |
| 335 | } |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 336 | default: |
| 337 | // something is wrong if we're trying to draw an empty element. |
| 338 | GrCrash("Unexpected element type"); |
| 339 | return false; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 340 | } |
| 341 | return true; |
| 342 | } |
| 343 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 344 | void GrClipMaskManager::mergeMask(GrTexture* dstMask, |
| 345 | GrTexture* srcMask, |
| 346 | SkRegion::Op op, |
| 347 | const GrIRect& dstBound, |
| 348 | const GrIRect& srcBound) { |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 349 | GrDrawState* drawState = fGpu->drawState(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 350 | GrAssert(NULL != drawState); |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 351 | SkMatrix oldMatrix = drawState->getViewMatrix(); |
| 352 | drawState->viewMatrix()->reset(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 353 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 354 | drawState->setRenderTarget(dstMask->asRenderTarget()); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 355 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 356 | setup_boolean_blendcoeffs(drawState, op); |
skia.committer@gmail.com | 72b2e6f | 2012-11-08 02:03:56 +0000 | [diff] [blame] | 357 | |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 358 | SkMatrix sampleM; |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 359 | sampleM.setIDiv(srcMask->width(), srcMask->height()); |
| 360 | drawState->stage(0)->setEffect( |
| 361 | GrTextureDomainEffect::Create(srcMask, |
| 362 | sampleM, |
| 363 | GrTextureDomainEffect::MakeTexelDomain(srcMask, srcBound), |
| 364 | GrTextureDomainEffect::kDecal_WrapMode))->unref(); |
| 365 | fGpu->drawSimpleRect(SkRect::MakeFromIRect(dstBound), NULL); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 366 | |
tomhudson@google.com | 676e660 | 2012-07-10 17:21:48 +0000 | [diff] [blame] | 367 | drawState->disableStage(0); |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 368 | drawState->setViewMatrix(oldMatrix); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 369 | } |
| 370 | |
robertphillips@google.com | 6d62df4 | 2012-05-07 18:07:36 +0000 | [diff] [blame] | 371 | // get a texture to act as a temporary buffer for AA clip boolean operations |
| 372 | // TODO: given the expense of createTexture we may want to just cache this too |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 373 | void GrClipMaskManager::getTemp(int width, int height, GrAutoScratchTexture* temp) { |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 374 | if (NULL != temp->texture()) { |
robertphillips@google.com | 6d62df4 | 2012-05-07 18:07:36 +0000 | [diff] [blame] | 375 | // we've already allocated the temp texture |
| 376 | return; |
| 377 | } |
| 378 | |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 379 | GrTextureDesc desc; |
| 380 | desc.fFlags = kRenderTarget_GrTextureFlagBit|kNoStencil_GrTextureFlagBit; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 381 | desc.fWidth = width; |
| 382 | desc.fHeight = height; |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 383 | desc.fConfig = kAlpha_8_GrPixelConfig; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 384 | |
robertphillips@google.com | 2c75681 | 2012-05-22 20:28:23 +0000 | [diff] [blame] | 385 | temp->set(this->getContext(), desc); |
robertphillips@google.com | 6d62df4 | 2012-05-07 18:07:36 +0000 | [diff] [blame] | 386 | } |
| 387 | |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 388 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 389 | // Handles caching & allocation (if needed) of a clip alpha-mask texture for both the sw-upload |
| 390 | // or gpu-rendered cases. Returns true if there is no more work to be done (i.e., we got a cache |
| 391 | // hit) |
| 392 | bool GrClipMaskManager::getMaskTexture(int32_t clipStackGenID, |
| 393 | const SkIRect& clipSpaceIBounds, |
| 394 | GrTexture** result) { |
| 395 | bool cached = fAACache.canReuse(clipStackGenID, clipSpaceIBounds); |
| 396 | if (!cached) { |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 397 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 398 | // There isn't a suitable entry in the cache so we create a new texture to store the mask. |
| 399 | // Since we are setting up the cache we know the last lookup was a miss. Free up the |
| 400 | // currently cached mask so it can be reused. |
| 401 | fAACache.reset(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 402 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 403 | GrTextureDesc desc; |
| 404 | desc.fFlags = kRenderTarget_GrTextureFlagBit|kNoStencil_GrTextureFlagBit; |
| 405 | desc.fWidth = clipSpaceIBounds.width(); |
| 406 | desc.fHeight = clipSpaceIBounds.height(); |
| 407 | desc.fConfig = kAlpha_8_GrPixelConfig; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 408 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 409 | fAACache.acquireMask(clipStackGenID, desc, clipSpaceIBounds); |
robertphillips@google.com | 8fff356 | 2012-05-11 12:53:50 +0000 | [diff] [blame] | 410 | } |
| 411 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 412 | *result = fAACache.getLastMask(); |
| 413 | return cached; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 414 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 415 | |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 416 | //////////////////////////////////////////////////////////////////////////////// |
| 417 | // Create a 8-bit clip mask in alpha |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 418 | GrTexture* GrClipMaskManager::createAlphaClipMask(int32_t clipStackGenID, |
| 419 | InitialState initialState, |
| 420 | const ElementList& elements, |
| 421 | const SkIRect& clipSpaceIBounds) { |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 422 | GrAssert(kNone_ClipMaskType == fCurrClipMaskType); |
| 423 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 424 | GrTexture* result; |
| 425 | if (this->getMaskTexture(clipStackGenID, clipSpaceIBounds, &result)) { |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 426 | fCurrClipMaskType = kAlpha_ClipMaskType; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 427 | return result; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 428 | } |
| 429 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 430 | if (NULL == result) { |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 431 | fAACache.reset(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 432 | return NULL; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 433 | } |
| 434 | |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 435 | GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit); |
| 436 | GrDrawState* drawState = fGpu->drawState(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 437 | |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 438 | GrDrawTarget::AutoGeometryPush agp(fGpu); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 439 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 440 | // The top-left of the mask corresponds to the top-left corner of the bounds. |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 441 | SkVector clipToMaskOffset = { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 442 | SkIntToScalar(-clipSpaceIBounds.fLeft), |
| 443 | SkIntToScalar(-clipSpaceIBounds.fTop) |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 444 | }; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 445 | // The texture may be larger than necessary, this rect represents the part of the texture |
| 446 | // we populate with a rasterization of the clip. |
| 447 | SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height()); |
| 448 | |
bsalomon@google.com | cf939ae | 2012-12-13 19:59:23 +0000 | [diff] [blame] | 449 | // We're drawing a coverage mask and want coverage to be run through the blend function. |
| 450 | drawState->enableState(GrDrawState::kCoverageDrawing_StateBit); |
| 451 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 452 | // Set the matrix so that rendered clip elements are transformed to mask space from clip space. |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 453 | drawState->viewMatrix()->setTranslate(clipToMaskOffset); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 454 | |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 455 | // The scratch texture that we are drawing into can be substantially larger than the mask. Only |
| 456 | // clear the part that we care about. |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 457 | fGpu->clear(&maskSpaceIBounds, |
| 458 | kAllIn_InitialState == initialState ? 0xffffffff : 0x00000000, |
| 459 | result->asRenderTarget()); |
skia.committer@gmail.com | d9f7503 | 2012-11-09 02:01:24 +0000 | [diff] [blame] | 460 | |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 461 | GrAutoScratchTexture temp; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 462 | // walk through each clip element and perform its set op |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 463 | for (ElementList::Iter iter = elements.headIter(); iter.get(); iter.next()) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 464 | const Element* element = iter.get(); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 465 | SkRegion::Op op = element->getOp(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 466 | |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 467 | if (SkRegion::kReverseDifference_Op == op || SkRegion::kIntersect_Op == op || |
| 468 | element->isInverseFilled()) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 469 | this->getTemp(maskSpaceIBounds.fRight, maskSpaceIBounds.fBottom, &temp); |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 470 | if (NULL == temp.texture()) { |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 471 | fAACache.reset(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 472 | return NULL; |
robertphillips@google.com | 6d62df4 | 2012-05-07 18:07:36 +0000 | [diff] [blame] | 473 | } |
| 474 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 475 | // This is the bounds of the clip element in the space of the alpha-mask. The temporary |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 476 | // mask buffer can be substantially larger than the actually clip stack element. We |
| 477 | // touch the minimum number of pixels necessary and use decal mode to combine it with |
bsalomon@google.com | 2e0c79f | 2012-11-12 13:38:57 +0000 | [diff] [blame] | 478 | // the accumulator |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 479 | GrIRect maskSpaceElementIBounds; |
| 480 | if (element->isInverseFilled()) { |
| 481 | maskSpaceElementIBounds = maskSpaceIBounds; |
| 482 | } else { |
| 483 | GrRect elementBounds = element->getBounds(); |
| 484 | elementBounds.offset(clipToMaskOffset); |
| 485 | elementBounds.roundOut(&maskSpaceElementIBounds); |
| 486 | } |
bsalomon@google.com | 7b7cdd1 | 2012-11-07 16:17:24 +0000 | [diff] [blame] | 487 | |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 488 | // determines whether we're drawing white-on-black or black-on-white |
| 489 | bool invert = element->isInverseFilled(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 490 | |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 491 | // clear the temp target & draw into it |
| 492 | fGpu->clear(&maskSpaceElementIBounds, |
| 493 | invert ? 0xffffffff : 0x00000000, |
| 494 | temp.texture()->asRenderTarget()); |
| 495 | drawState->setAlpha(invert ? 0x00 : 0xff); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 496 | setup_boolean_blendcoeffs(drawState, SkRegion::kReplace_Op); |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 497 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 498 | if (!this->drawClipShape(temp.texture(), element)) { |
| 499 | fAACache.reset(); |
| 500 | return NULL; |
| 501 | } |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 502 | |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 503 | // Now draw into the accumulator using the real operation and the temp buffer as a |
| 504 | // texture |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 505 | this->mergeMask(result, temp.texture(), op, maskSpaceIBounds, maskSpaceElementIBounds); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 506 | } else { |
bsalomon@google.com | c6b3e48 | 2012-12-07 20:43:52 +0000 | [diff] [blame] | 507 | // all the remaining ops can just be directly draw into the accumulation buffer |
| 508 | drawState->setAlpha(0xff); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 509 | setup_boolean_blendcoeffs(drawState, op); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 510 | this->drawClipShape(result, element); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 511 | } |
| 512 | } |
| 513 | |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 514 | fCurrClipMaskType = kAlpha_ClipMaskType; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 515 | return result; |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | //////////////////////////////////////////////////////////////////////////////// |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 519 | // Create a 1-bit clip mask in the stencil buffer. 'devClipBounds' are in device |
robertphillips@google.com | f8d904a | 2012-07-31 12:18:16 +0000 | [diff] [blame] | 520 | // (as opposed to canvas) coordinates |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 521 | bool GrClipMaskManager::createStencilClipMask(InitialState initialState, |
| 522 | const ElementList& elements, |
| 523 | const SkIRect& clipSpaceIBounds, |
| 524 | const SkIPoint& clipSpaceToStencilOffset) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 525 | |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 526 | GrAssert(kNone_ClipMaskType == fCurrClipMaskType); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 527 | |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 528 | GrDrawState* drawState = fGpu->drawState(); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 529 | GrAssert(drawState->isClipState()); |
| 530 | |
| 531 | GrRenderTarget* rt = drawState->getRenderTarget(); |
| 532 | GrAssert(NULL != rt); |
| 533 | |
| 534 | // TODO: dynamically attach a SB when needed. |
| 535 | GrStencilBuffer* stencilBuffer = rt->getStencilBuffer(); |
| 536 | if (NULL == stencilBuffer) { |
| 537 | return false; |
| 538 | } |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 539 | int32_t genID = elements.tail()->getGenID(); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 540 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 541 | if (stencilBuffer->mustRenderClip(genID, clipSpaceIBounds, clipSpaceToStencilOffset)) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 542 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 543 | stencilBuffer->setLastClip(genID, clipSpaceIBounds, clipSpaceToStencilOffset); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 544 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 545 | |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 546 | GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit); |
| 547 | drawState = fGpu->drawState(); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 548 | drawState->setRenderTarget(rt); |
bsalomon@google.com | 13b85aa | 2012-06-15 21:09:40 +0000 | [diff] [blame] | 549 | GrDrawTarget::AutoGeometryPush agp(fGpu); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 550 | |
bsalomon@google.com | 9f13174 | 2012-12-13 20:43:56 +0000 | [diff] [blame^] | 551 | // We set the current clip to the bounds so that our recursive draws are scissored to them. |
| 552 | SkIRect stencilSpaceIBounds(clipSpaceIBounds); |
| 553 | stencilSpaceIBounds.offset(clipSpaceToStencilOffset); |
| 554 | GrDrawTarget::AutoClipRestore acr(fGpu, stencilSpaceIBounds); |
| 555 | drawState->enableState(GrDrawState::kClip_StateBit); |
| 556 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 557 | // Set the matrix so that rendered clip elements are transformed from clip to stencil space. |
| 558 | SkVector translate = { |
| 559 | SkIntToScalar(clipSpaceToStencilOffset.fX), |
| 560 | SkIntToScalar(clipSpaceToStencilOffset.fY) |
| 561 | }; |
| 562 | drawState->viewMatrix()->setTranslate(translate); |
robertphillips@google.com | f8d904a | 2012-07-31 12:18:16 +0000 | [diff] [blame] | 563 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 564 | #if !VISUALIZE_COMPLEX_CLIP |
| 565 | drawState->enableState(GrDrawState::kNoColorWrites_StateBit); |
| 566 | #endif |
| 567 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 568 | int clipBit = stencilBuffer->bits(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 569 | SkASSERT((clipBit <= 16) && "Ganesh only handles 16b or smaller stencil buffers"); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 570 | clipBit = (1 << (clipBit-1)); |
| 571 | |
robertphillips@google.com | 7b11289 | 2012-07-31 15:18:21 +0000 | [diff] [blame] | 572 | GrIRect devRTRect = GrIRect::MakeWH(rt->width(), rt->height()); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 573 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 574 | fGpu->clearStencilClip(stencilSpaceIBounds, kAllIn_InitialState == initialState); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 575 | |
| 576 | // walk through each clip element and perform its set op |
| 577 | // with the existing clip. |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 578 | for (ElementList::Iter iter(elements.headIter()); NULL != iter.get(); iter.next()) { |
| 579 | const Element* element = iter.get(); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 580 | SkPath::FillType fill; |
tomhudson@google.com | 8afae61 | 2012-08-14 15:03:35 +0000 | [diff] [blame] | 581 | bool fillInverted = false; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 582 | // enabled at bottom of loop |
| 583 | drawState->disableState(GrGpu::kModifyStencilClip_StateBit); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 584 | // if the target is MSAA then we want MSAA enabled when the clip is soft |
| 585 | if (rt->isMultisampled()) { |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 586 | drawState->setState(GrDrawState::kHWAntialias_StateBit, element->isAA()); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 587 | } |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 588 | |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 589 | // This will be used to determine whether the clip shape can be rendered into the |
| 590 | // stencil with arbitrary stencil settings. |
| 591 | GrPathRenderer::StencilSupport stencilSupport; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 592 | |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 593 | SkStroke stroke; |
| 594 | stroke.setDoFill(true); |
| 595 | |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 596 | SkRegion::Op op = element->getOp(); |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 597 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 598 | GrPathRenderer* pr = NULL; |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 599 | SkTCopyOnFirstWrite<SkPath> clipPath; |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 600 | if (Element::kRect_Type == element->getType()) { |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 601 | stencilSupport = GrPathRenderer::kNoRestriction_StencilSupport; |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 602 | fill = SkPath::kEvenOdd_FillType; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 603 | fillInverted = false; |
tomhudson@google.com | 8afae61 | 2012-08-14 15:03:35 +0000 | [diff] [blame] | 604 | } else { |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 605 | GrAssert(Element::kPath_Type == element->getType()); |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 606 | clipPath.init(element->getPath()); |
| 607 | fill = clipPath->getFillType(); |
| 608 | fillInverted = clipPath->isInverseFillType(); |
| 609 | if (fillInverted) { |
| 610 | clipPath.writable()->toggleInverseFillType(); |
| 611 | fill = clipPath->getFillType(); |
| 612 | } |
| 613 | pr = this->getContext()->getPathRenderer(*clipPath, |
| 614 | stroke, |
| 615 | fGpu, |
| 616 | false, |
| 617 | GrPathRendererChain::kStencilOnly_DrawType, |
| 618 | &stencilSupport); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 619 | if (NULL == pr) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 620 | return false; |
| 621 | } |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 622 | } |
| 623 | |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 624 | int passes; |
| 625 | GrStencilSettings stencilSettings[GrStencilSettings::kMaxStencilClipPasses]; |
| 626 | |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 627 | bool canRenderDirectToStencil = |
| 628 | GrPathRenderer::kNoRestriction_StencilSupport == stencilSupport; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 629 | bool canDrawDirectToClip; // Given the renderer, the element, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 630 | // fill rule, and set operation can |
| 631 | // we render the element directly to |
| 632 | // stencil bit used for clipping. |
| 633 | canDrawDirectToClip = GrStencilSettings::GetClipPasses(op, |
| 634 | canRenderDirectToStencil, |
| 635 | clipBit, |
| 636 | fillInverted, |
| 637 | &passes, |
| 638 | stencilSettings); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 639 | |
| 640 | // draw the element to the client stencil bits if necessary |
| 641 | if (!canDrawDirectToClip) { |
| 642 | GR_STATIC_CONST_SAME_STENCIL(gDrawToStencil, |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 643 | kIncClamp_StencilOp, |
| 644 | kIncClamp_StencilOp, |
| 645 | kAlways_StencilFunc, |
| 646 | 0xffff, |
| 647 | 0x0000, |
| 648 | 0xffff); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 649 | SET_RANDOM_COLOR |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 650 | if (Element::kRect_Type == element->getType()) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 651 | *drawState->stencil() = gDrawToStencil; |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 652 | fGpu->drawSimpleRect(element->getRect(), NULL); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 653 | } else { |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 654 | GrAssert(Element::kPath_Type == element->getType()); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 655 | if (canRenderDirectToStencil) { |
| 656 | *drawState->stencil() = gDrawToStencil; |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 657 | pr->drawPath(*clipPath, stroke, fGpu, false); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 658 | } else { |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 659 | pr->stencilPath(*clipPath, stroke, fGpu); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 660 | } |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | // now we modify the clip bit by rendering either the clip |
| 665 | // element directly or a bounding rect of the entire clip. |
| 666 | drawState->enableState(GrGpu::kModifyStencilClip_StateBit); |
| 667 | for (int p = 0; p < passes; ++p) { |
| 668 | *drawState->stencil() = stencilSettings[p]; |
| 669 | if (canDrawDirectToClip) { |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 670 | if (Element::kRect_Type == element->getType()) { |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 671 | SET_RANDOM_COLOR |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 672 | fGpu->drawSimpleRect(element->getRect(), NULL); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 673 | } else { |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 674 | GrAssert(Element::kPath_Type == element->getType()); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 675 | SET_RANDOM_COLOR |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 676 | pr->drawPath(*clipPath, stroke, fGpu, false); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 677 | } |
| 678 | } else { |
| 679 | SET_RANDOM_COLOR |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 680 | // The view matrix is setup to do clip space -> stencil space translation, so |
| 681 | // draw rect in clip space. |
| 682 | fGpu->drawSimpleRect(SkRect::MakeFromIRect(clipSpaceIBounds), NULL); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 683 | } |
| 684 | } |
| 685 | } |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 686 | } |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 687 | // set this last because recursive draws may overwrite it back to kNone. |
| 688 | GrAssert(kNone_ClipMaskType == fCurrClipMaskType); |
| 689 | fCurrClipMaskType = kStencil_ClipMaskType; |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 690 | return true; |
| 691 | } |
| 692 | |
robertphillips@google.com | f8d904a | 2012-07-31 12:18:16 +0000 | [diff] [blame] | 693 | |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 694 | // mapping of clip-respecting stencil funcs to normal stencil funcs |
| 695 | // mapping depends on whether stencil-clipping is in effect. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 696 | static const GrStencilFunc |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 697 | gSpecialToBasicStencilFunc[2][kClipStencilFuncCount] = { |
| 698 | {// Stencil-Clipping is DISABLED, we are effectively always inside the clip |
| 699 | // In the Clip Funcs |
| 700 | kAlways_StencilFunc, // kAlwaysIfInClip_StencilFunc |
| 701 | kEqual_StencilFunc, // kEqualIfInClip_StencilFunc |
| 702 | kLess_StencilFunc, // kLessIfInClip_StencilFunc |
| 703 | kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc |
| 704 | // Special in the clip func that forces user's ref to be 0. |
| 705 | kNotEqual_StencilFunc, // kNonZeroIfInClip_StencilFunc |
| 706 | // make ref 0 and do normal nequal. |
| 707 | }, |
| 708 | {// Stencil-Clipping is ENABLED |
| 709 | // In the Clip Funcs |
| 710 | kEqual_StencilFunc, // kAlwaysIfInClip_StencilFunc |
| 711 | // eq stencil clip bit, mask |
| 712 | // out user bits. |
| 713 | |
| 714 | kEqual_StencilFunc, // kEqualIfInClip_StencilFunc |
| 715 | // add stencil bit to mask and ref |
| 716 | |
| 717 | kLess_StencilFunc, // kLessIfInClip_StencilFunc |
| 718 | kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc |
| 719 | // for both of these we can add |
| 720 | // the clip bit to the mask and |
| 721 | // ref and compare as normal |
| 722 | // Special in the clip func that forces user's ref to be 0. |
| 723 | kLess_StencilFunc, // kNonZeroIfInClip_StencilFunc |
| 724 | // make ref have only the clip bit set |
| 725 | // and make comparison be less |
| 726 | // 10..0 < 1..user_bits.. |
| 727 | } |
| 728 | }; |
| 729 | |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 730 | namespace { |
| 731 | // Sets the settings to clip against the stencil buffer clip while ignoring the |
| 732 | // client bits. |
| 733 | const GrStencilSettings& basic_apply_stencil_clip_settings() { |
| 734 | // stencil settings to use when clip is in stencil |
| 735 | GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings, |
| 736 | kKeep_StencilOp, |
| 737 | kKeep_StencilOp, |
| 738 | kAlwaysIfInClip_StencilFunc, |
| 739 | 0x0000, |
| 740 | 0x0000, |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 741 | 0x0000); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 742 | return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings); |
| 743 | } |
| 744 | } |
| 745 | |
| 746 | void GrClipMaskManager::setGpuStencil() { |
| 747 | // We make two copies of the StencilSettings here (except in the early |
| 748 | // exit scenario. One copy from draw state to the stack var. Then another |
| 749 | // from the stack var to the gpu. We could make this class hold a ptr to |
| 750 | // GrGpu's fStencilSettings and eliminate the stack copy here. |
| 751 | |
| 752 | const GrDrawState& drawState = fGpu->getDrawState(); |
| 753 | |
| 754 | // use stencil for clipping if clipping is enabled and the clip |
| 755 | // has been written into the stencil. |
| 756 | GrClipMaskManager::StencilClipMode clipMode; |
| 757 | if (this->isClipInStencil() && drawState.isClipState()) { |
| 758 | clipMode = GrClipMaskManager::kRespectClip_StencilClipMode; |
| 759 | // We can't be modifying the clip and respecting it at the same time. |
| 760 | GrAssert(!drawState.isStateFlagEnabled( |
| 761 | GrGpu::kModifyStencilClip_StateBit)); |
| 762 | } else if (drawState.isStateFlagEnabled( |
| 763 | GrGpu::kModifyStencilClip_StateBit)) { |
| 764 | clipMode = GrClipMaskManager::kModifyClip_StencilClipMode; |
| 765 | } else { |
| 766 | clipMode = GrClipMaskManager::kIgnoreClip_StencilClipMode; |
| 767 | } |
| 768 | |
| 769 | GrStencilSettings settings; |
| 770 | // The GrGpu client may not be using the stencil buffer but we may need to |
| 771 | // enable it in order to respect a stencil clip. |
| 772 | if (drawState.getStencil().isDisabled()) { |
| 773 | if (GrClipMaskManager::kRespectClip_StencilClipMode == clipMode) { |
| 774 | settings = basic_apply_stencil_clip_settings(); |
| 775 | } else { |
| 776 | fGpu->disableStencil(); |
| 777 | return; |
| 778 | } |
| 779 | } else { |
| 780 | settings = drawState.getStencil(); |
| 781 | } |
| 782 | |
| 783 | // TODO: dynamically attach a stencil buffer |
| 784 | int stencilBits = 0; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 785 | GrStencilBuffer* stencilBuffer = |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 786 | drawState.getRenderTarget()->getStencilBuffer(); |
| 787 | if (NULL != stencilBuffer) { |
| 788 | stencilBits = stencilBuffer->bits(); |
| 789 | } |
| 790 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 791 | GrAssert(fGpu->getCaps().stencilWrapOpsSupport() || !settings.usesWrapOp()); |
bsalomon@google.com | f660187 | 2012-08-28 21:11:35 +0000 | [diff] [blame] | 792 | GrAssert(fGpu->getCaps().twoSidedStencilSupport() || !settings.isTwoSided()); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 793 | this->adjustStencilParams(&settings, clipMode, stencilBits); |
| 794 | fGpu->setStencilSettings(settings); |
| 795 | } |
| 796 | |
| 797 | void GrClipMaskManager::adjustStencilParams(GrStencilSettings* settings, |
| 798 | StencilClipMode mode, |
| 799 | int stencilBitCnt) { |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 800 | GrAssert(stencilBitCnt > 0); |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 801 | |
| 802 | if (kModifyClip_StencilClipMode == mode) { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 803 | // We assume that this clip manager itself is drawing to the GrGpu and |
| 804 | // has already setup the correct values. |
| 805 | return; |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 806 | } |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 807 | |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 808 | unsigned int clipBit = (1 << (stencilBitCnt - 1)); |
| 809 | unsigned int userBits = clipBit - 1; |
| 810 | |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 811 | GrStencilSettings::Face face = GrStencilSettings::kFront_Face; |
bsalomon@google.com | f660187 | 2012-08-28 21:11:35 +0000 | [diff] [blame] | 812 | bool twoSided = fGpu->getCaps().twoSidedStencilSupport(); |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 813 | |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 814 | bool finished = false; |
| 815 | while (!finished) { |
| 816 | GrStencilFunc func = settings->func(face); |
| 817 | uint16_t writeMask = settings->writeMask(face); |
| 818 | uint16_t funcMask = settings->funcMask(face); |
| 819 | uint16_t funcRef = settings->funcRef(face); |
| 820 | |
| 821 | GrAssert((unsigned) func < kStencilFuncCount); |
| 822 | |
| 823 | writeMask &= userBits; |
| 824 | |
| 825 | if (func >= kBasicStencilFuncCount) { |
| 826 | int respectClip = kRespectClip_StencilClipMode == mode; |
| 827 | if (respectClip) { |
| 828 | // The GrGpu class should have checked this |
| 829 | GrAssert(this->isClipInStencil()); |
| 830 | switch (func) { |
| 831 | case kAlwaysIfInClip_StencilFunc: |
| 832 | funcMask = clipBit; |
| 833 | funcRef = clipBit; |
| 834 | break; |
| 835 | case kEqualIfInClip_StencilFunc: |
| 836 | case kLessIfInClip_StencilFunc: |
| 837 | case kLEqualIfInClip_StencilFunc: |
| 838 | funcMask = (funcMask & userBits) | clipBit; |
| 839 | funcRef = (funcRef & userBits) | clipBit; |
| 840 | break; |
| 841 | case kNonZeroIfInClip_StencilFunc: |
| 842 | funcMask = (funcMask & userBits) | clipBit; |
| 843 | funcRef = clipBit; |
| 844 | break; |
| 845 | default: |
| 846 | GrCrash("Unknown stencil func"); |
| 847 | } |
| 848 | } else { |
| 849 | funcMask &= userBits; |
| 850 | funcRef &= userBits; |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 851 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 852 | const GrStencilFunc* table = |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 853 | gSpecialToBasicStencilFunc[respectClip]; |
| 854 | func = table[func - kBasicStencilFuncCount]; |
| 855 | GrAssert(func >= 0 && func < kBasicStencilFuncCount); |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 856 | } else { |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 857 | funcMask &= userBits; |
| 858 | funcRef &= userBits; |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 859 | } |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 860 | |
| 861 | settings->setFunc(face, func); |
| 862 | settings->setWriteMask(face, writeMask); |
| 863 | settings->setFuncMask(face, funcMask); |
| 864 | settings->setFuncRef(face, funcRef); |
| 865 | |
| 866 | if (GrStencilSettings::kFront_Face == face) { |
| 867 | face = GrStencilSettings::kBack_Face; |
| 868 | finished = !twoSided; |
| 869 | } else { |
| 870 | finished = true; |
| 871 | } |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 872 | } |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 873 | if (!twoSided) { |
| 874 | settings->copyFrontSettingsToBack(); |
| 875 | } |
bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 879 | GrTexture* GrClipMaskManager::createSoftwareClipMask(int32_t clipStackGenID, |
| 880 | GrReducedClip::InitialState initialState, |
| 881 | const GrReducedClip::ElementList& elements, |
| 882 | const SkIRect& clipSpaceIBounds) { |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 883 | GrAssert(kNone_ClipMaskType == fCurrClipMaskType); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 884 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 885 | GrTexture* result; |
| 886 | if (this->getMaskTexture(clipStackGenID, clipSpaceIBounds, &result)) { |
| 887 | return result; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 888 | } |
| 889 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 890 | if (NULL == result) { |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 891 | fAACache.reset(); |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 892 | return NULL; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 893 | } |
| 894 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 895 | // The mask texture may be larger than necessary. We round out the clip space bounds and pin |
| 896 | // the top left corner of the resulting rect to the top left of the texture. |
| 897 | SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height()); |
| 898 | |
robertphillips@google.com | 2c75681 | 2012-05-22 20:28:23 +0000 | [diff] [blame] | 899 | GrSWMaskHelper helper(this->getContext()); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 900 | |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 901 | SkMatrix matrix; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 902 | matrix.setTranslate(SkIntToScalar(-clipSpaceIBounds.fLeft), |
| 903 | SkIntToScalar(-clipSpaceIBounds.fTop)); |
| 904 | helper.init(maskSpaceIBounds, &matrix); |
| 905 | |
| 906 | helper.clear(kAllIn_InitialState == initialState ? 0xFF : 0x00); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 907 | |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 908 | SkStroke stroke; |
| 909 | stroke.setDoFill(true); |
| 910 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 911 | for (ElementList::Iter iter(elements.headIter()) ; NULL != iter.get(); iter.next()) { |
robertphillips@google.com | a6f11c4 | 2012-07-23 17:39:44 +0000 | [diff] [blame] | 912 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 913 | const Element* element = iter.get(); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 914 | SkRegion::Op op = element->getOp(); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 915 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 916 | if (SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) { |
| 917 | // Intersect and reverse difference require modifying pixels outside of the geometry |
| 918 | // that is being "drawn". In both cases we erase all the pixels outside of the geometry |
| 919 | // but leave the pixels inside the geometry alone. For reverse difference we invert all |
| 920 | // the pixels before clearing the ones outside the geometry. |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 921 | if (SkRegion::kReverseDifference_Op == op) { |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 922 | SkRect temp = SkRect::MakeFromIRect(clipSpaceIBounds); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 923 | // invert the entire scene |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 924 | helper.draw(temp, SkRegion::kXOR_Op, false, 0xFF); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 925 | } |
| 926 | |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 927 | if (Element::kRect_Type == element->getType()) { |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 928 | // convert the rect to a path so we can invert the fill |
| 929 | SkPath temp; |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 930 | temp.addRect(element->getRect()); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 931 | temp.setFillType(SkPath::kInverseEvenOdd_FillType); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 932 | |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 933 | helper.draw(temp, stroke, SkRegion::kReplace_Op, |
| 934 | element->isAA(), |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 935 | 0x00); |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 936 | } else { |
| 937 | GrAssert(Element::kPath_Type == element->getType()); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 938 | SkPath clipPath = element->getPath(); |
| 939 | clipPath.toggleInverseFillType(); |
skia.committer@gmail.com | d21444a | 2012-12-07 02:01:25 +0000 | [diff] [blame] | 940 | helper.draw(clipPath, stroke, |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 941 | SkRegion::kReplace_Op, |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 942 | element->isAA(), |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 943 | 0x00); |
robertphillips@google.com | fa66294 | 2012-05-17 12:20:22 +0000 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | continue; |
| 947 | } |
| 948 | |
| 949 | // The other ops (union, xor, diff) only affect pixels inside |
| 950 | // the geometry so they can just be drawn normally |
bsalomon@google.com | 8182fa0 | 2012-12-04 14:06:06 +0000 | [diff] [blame] | 951 | if (Element::kRect_Type == element->getType()) { |
| 952 | helper.draw(element->getRect(), op, element->isAA(), 0xFF); |
| 953 | } else { |
| 954 | GrAssert(Element::kPath_Type == element->getType()); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 955 | helper.draw(element->getPath(), stroke, op, element->isAA(), 0xFF); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 956 | } |
| 957 | } |
| 958 | |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 959 | helper.toTexture(result, kAllIn_InitialState == initialState ? 0xFF : 0x00); |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 960 | |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 961 | fCurrClipMaskType = kAlpha_ClipMaskType; |
bsalomon@google.com | 4c2443e | 2012-12-06 20:58:57 +0000 | [diff] [blame] | 962 | return result; |
robertphillips@google.com | 6b70a7b | 2012-05-11 15:32:48 +0000 | [diff] [blame] | 963 | } |
| 964 | |
robertphillips@google.com | f294b77 | 2012-04-27 14:29:26 +0000 | [diff] [blame] | 965 | //////////////////////////////////////////////////////////////////////////////// |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 966 | void GrClipMaskManager::releaseResources() { |
robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 967 | fAACache.releaseResources(); |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 968 | } |