blob: 3bdb332a69d4fc1e0f7b60805fb78e00e22d5998 [file] [log] [blame]
robertphillips@google.com1e945b72012-04-16 18:03:03 +00001
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.com7b7cdd12012-11-07 16:17:24 +000010#include "effects/GrTextureDomainEffect.h"
robertphillips@google.com1e945b72012-04-16 18:03:03 +000011#include "GrGpu.h"
12#include "GrRenderTarget.h"
13#include "GrStencilBuffer.h"
14#include "GrPathRenderer.h"
robertphillips@google.coma72eef32012-05-01 17:22:59 +000015#include "GrPaint.h"
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +000016#include "SkRasterClip.h"
sugoi@google.com5f74cf82012-12-17 21:16:45 +000017#include "SkStrokeRec.h"
robertphillips@google.comfa662942012-05-17 12:20:22 +000018#include "GrAAConvexPathRenderer.h"
19#include "GrAAHairLinePathRenderer.h"
robertphillips@google.com58b20212012-06-27 20:44:52 +000020#include "GrSWMaskHelper.h"
robertphillips@google.com46a86002012-08-08 10:42:44 +000021
bsalomon@google.comc6b3e482012-12-07 20:43:52 +000022#include "SkTLazy.h"
23
robertphillips@google.comba998f22012-10-12 11:33:56 +000024#define GR_AA_CLIP 1
robertphillips@google.coma72eef32012-05-01 17:22:59 +000025
bsalomon@google.com8182fa02012-12-04 14:06:06 +000026typedef SkClipStack::Element Element;
bsalomon@google.com51a62862012-11-26 21:19:43 +000027
bsalomon@google.com4c2443e2012-12-06 20:58:57 +000028using namespace GrReducedClip;
29
bsalomon@google.com51a62862012-11-26 21:19:43 +000030////////////////////////////////////////////////////////////////////////////////
robertphillips@google.coma72eef32012-05-01 17:22:59 +000031namespace {
rmistry@google.comfbfcd562012-08-23 18:09:54 +000032// set up the draw state to enable the aa clipping mask. Besides setting up the
bsalomon@google.com08283af2012-10-26 13:01:20 +000033// stage matrix this also alters the vertex layout
rmistry@google.comfbfcd562012-08-23 18:09:54 +000034void setup_drawstate_aaclip(GrGpu* gpu,
35 GrTexture* result,
robertphillips@google.com7b112892012-07-31 15:18:21 +000036 const GrIRect &devBound) {
robertphillips@google.coma72eef32012-05-01 17:22:59 +000037 GrDrawState* drawState = gpu->drawState();
38 GrAssert(drawState);
39
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +000040 static const int kMaskStage = GrPaint::kTotalStages+1;
robertphillips@google.coma72eef32012-05-01 17:22:59 +000041
bsalomon@google.comb9086a02012-11-01 18:02:54 +000042 SkMatrix mat;
robertphillips@google.coma72eef32012-05-01 17:22:59 +000043 mat.setIDiv(result->width(), result->height());
rmistry@google.comfbfcd562012-08-23 18:09:54 +000044 mat.preTranslate(SkIntToScalar(-devBound.fLeft),
robertphillips@google.com7b112892012-07-31 15:18:21 +000045 SkIntToScalar(-devBound.fTop));
robertphillips@google.coma72eef32012-05-01 17:22:59 +000046 mat.preConcat(drawState->getViewMatrix());
47
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +000048 SkIRect domainTexels = SkIRect::MakeWH(devBound.width(), devBound.height());
bsalomon@google.com4c2443e2012-12-06 20:58:57 +000049 // This could be a long-lived effect that is cached with the alpha-mask.
bsalomon@google.comadc65362013-01-28 14:26:09 +000050 drawState->setEffect(kMaskStage,
51 GrTextureDomainEffect::Create(result,
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +000052 mat,
53 GrTextureDomainEffect::MakeTexelDomain(result, domainTexels),
54 GrTextureDomainEffect::kDecal_WrapMode))->unref();
robertphillips@google.coma72eef32012-05-01 17:22:59 +000055}
56
robertphillips@google.com8a4fc402012-05-24 12:42:24 +000057bool path_needs_SW_renderer(GrContext* context,
bsalomon@google.com13b85aa2012-06-15 21:09:40 +000058 GrGpu* gpu,
bsalomon@google.comc6b3e482012-12-07 20:43:52 +000059 const SkPath& origPath,
sugoi@google.com5f74cf82012-12-17 21:16:45 +000060 const SkStrokeRec& stroke,
bsalomon@google.com13b85aa2012-06-15 21:09:40 +000061 bool doAA) {
bsalomon@google.comc6b3e482012-12-07 20:43:52 +000062 // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer
63 SkTCopyOnFirstWrite<SkPath> path(origPath);
64 if (path->isInverseFillType()) {
65 path.writable()->toggleInverseFillType();
66 }
robertphillips@google.com8a4fc402012-05-24 12:42:24 +000067 // last (false) parameter disallows use of the SW path renderer
bsalomon@google.com45a15f52012-12-10 19:10:17 +000068 GrPathRendererChain::DrawType type = doAA ?
69 GrPathRendererChain::kColorAntiAlias_DrawType :
70 GrPathRendererChain::kColor_DrawType;
71
72 return NULL == context->getPathRenderer(*path, stroke, gpu, false, type);
robertphillips@google.coma6f11c42012-07-23 17:39:44 +000073}
74
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +000075}
76
robertphillips@google.comfa662942012-05-17 12:20:22 +000077/*
78 * This method traverses the clip stack to see if the GrSoftwarePathRenderer
79 * will be used on any element. If so, it returns true to indicate that the
80 * entire clip should be rendered in SW and then uploaded en masse to the gpu.
81 */
bsalomon@google.com4c2443e2012-12-06 20:58:57 +000082bool GrClipMaskManager::useSWOnlyPath(const ElementList& elements) {
robertphillips@google.coma3e5c632012-05-22 18:09:26 +000083
robertphillips@google.com8a4fc402012-05-24 12:42:24 +000084 // TODO: generalize this function so that when
robertphillips@google.comfa662942012-05-17 12:20:22 +000085 // a clip gets complex enough it can just be done in SW regardless
86 // of whether it would invoke the GrSoftwarePathRenderer.
sugoi@google.com5f74cf82012-12-17 21:16:45 +000087 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
skia.committer@gmail.comd21444a2012-12-07 02:01:25 +000088
bsalomon@google.com4c2443e2012-12-06 20:58:57 +000089 for (ElementList::Iter iter(elements.headIter()); iter.get(); iter.next()) {
90 const Element* element = iter.get();
robertphillips@google.comf69a11b2012-06-15 13:58:07 +000091 // rects can always be drawn directly w/o using the software path
92 // so only paths need to be checked
bsalomon@google.com8182fa02012-12-04 14:06:06 +000093 if (Element::kPath_Type == element->getType() &&
rmistry@google.comfbfcd562012-08-23 18:09:54 +000094 path_needs_SW_renderer(this->getContext(), fGpu,
bsalomon@google.com8182fa02012-12-04 14:06:06 +000095 element->getPath(),
sugoi@google.com12b4e272012-12-06 20:13:11 +000096 stroke,
bsalomon@google.com8182fa02012-12-04 14:06:06 +000097 element->isAA())) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +000098 return true;
robertphillips@google.comfa662942012-05-17 12:20:22 +000099 }
robertphillips@google.comfa662942012-05-17 12:20:22 +0000100 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000101 return false;
robertphillips@google.coma72eef32012-05-01 17:22:59 +0000102}
103
robertphillips@google.comf294b772012-04-27 14:29:26 +0000104////////////////////////////////////////////////////////////////////////////////
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000105// sort out what kind of clip mask needs to be created: alpha, stencil,
106// scissor, or entirely software
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000107bool GrClipMaskManager::setupClipping(const GrClipData* clipDataIn) {
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000108 fCurrClipMaskType = kNone_ClipMaskType;
bsalomon@google.coma3201942012-06-21 19:58:20 +0000109
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000110 ElementList elements(16);
111 InitialState initialState;
112 SkIRect clipSpaceIBounds;
113 bool requiresAA;
114 bool isRect = false;
115
bsalomon@google.com13b85aa2012-06-15 21:09:40 +0000116 GrDrawState* drawState = fGpu->drawState();
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000117
118 const GrRenderTarget* rt = drawState->getRenderTarget();
119 // GrDrawTarget should have filtered this for us
120 GrAssert(NULL != rt);
121
122 bool ignoreClip = !drawState->isClipState() || clipDataIn->fClipStack->isWideOpen();
123
124 if (!ignoreClip) {
125 SkIRect clipSpaceRTIBounds = SkIRect::MakeWH(rt->width(), rt->height());
126 clipSpaceRTIBounds.offset(clipDataIn->fOrigin);
127 ReduceClipStack(*clipDataIn->fClipStack,
128 clipSpaceRTIBounds,
129 &elements,
130 &initialState,
131 &clipSpaceIBounds,
132 &requiresAA);
133 if (elements.isEmpty()) {
134 if (kAllIn_InitialState == initialState) {
135 ignoreClip = clipSpaceIBounds == clipSpaceRTIBounds;
136 isRect = true;
137 } else {
138 return false;
139 }
140 }
141 }
142
143 if (ignoreClip) {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000144 fGpu->disableScissor();
145 this->setGpuStencil();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000146 return true;
147 }
148
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000149#if GR_AA_CLIP
150 // TODO: catch isRect && requiresAA and use clip planes if available rather than a mask.
robertphillips@google.comb99225c2012-07-24 18:20:10 +0000151
robertphillips@google.coma3e5c632012-05-22 18:09:26 +0000152 // If MSAA is enabled we can do everything in the stencil buffer.
robertphillips@google.comb99225c2012-07-24 18:20:10 +0000153 if (0 == rt->numSamples() && requiresAA) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000154 int32_t genID = clipDataIn->fClipStack->getTopmostGenID();
robertphillips@google.coma72eef32012-05-01 17:22:59 +0000155 GrTexture* result = NULL;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000156
157 if (this->useSWOnlyPath(elements)) {
158 // The clip geometry is complex enough that it will be more efficient to create it
159 // entirely in software
160 result = this->createSoftwareClipMask(genID,
161 initialState,
162 elements,
163 clipSpaceIBounds);
164 } else {
165 result = this->createAlphaClipMask(genID,
166 initialState,
167 elements,
168 clipSpaceIBounds);
169 }
170
171 if (NULL != result) {
172 // The mask's top left coord should be pinned to the rounded-out top left corner of
173 // clipSpace bounds. We determine the mask's position WRT to the render target here.
174 SkIRect rtSpaceMaskBounds = clipSpaceIBounds;
175 rtSpaceMaskBounds.offset(-clipDataIn->fOrigin);
176 setup_drawstate_aaclip(fGpu, result, rtSpaceMaskBounds);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000177 fGpu->disableScissor();
178 this->setGpuStencil();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000179 return true;
180 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000181 // if alpha clip mask creation fails fall through to the non-AA code paths
robertphillips@google.comf294b772012-04-27 14:29:26 +0000182 }
183#endif // GR_AA_CLIP
184
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000185 // Either a hard (stencil buffer) clip was explicitly requested or an anti-aliased clip couldn't
186 // be created. In either case, free up the texture in the anti-aliased mask cache.
187 // TODO: this may require more investigation. Ganesh performs a lot of utility draws (e.g.,
188 // clears, InOrderDrawBuffer playbacks) that hit the stencil buffer path. These may be
189 // "incorrectly" clearing the AA cache.
robertphillips@google.com5acc0e32012-05-17 12:01:02 +0000190 fAACache.reset();
191
bsalomon@google.coma3201942012-06-21 19:58:20 +0000192 // If the clip is a rectangle then just set the scissor. Otherwise, create
193 // a stencil mask.
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000194 if (isRect) {
195 SkIRect clipRect = clipSpaceIBounds;
196 clipRect.offset(-clipDataIn->fOrigin);
197 fGpu->enableScissor(clipRect);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000198 this->setGpuStencil();
199 return true;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000200 }
201
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000202 // use the stencil clip if we can't represent the clip as a rectangle.
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000203 SkIPoint clipSpaceToStencilSpaceOffset = -clipDataIn->fOrigin;
204 this->createStencilClipMask(initialState,
205 elements,
206 clipSpaceIBounds,
207 clipSpaceToStencilSpaceOffset);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000208
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000209 // This must occur after createStencilClipMask. That function may change the scissor. Also, it
210 // only guarantees that the stencil mask is correct within the bounds it was passed, so we must
211 // use both stencil and scissor test to the bounds for the final draw.
212 SkIRect scissorSpaceIBounds(clipSpaceIBounds);
213 scissorSpaceIBounds.offset(clipSpaceToStencilSpaceOffset);
214 fGpu->enableScissor(scissorSpaceIBounds);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000215 this->setGpuStencil();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000216 return true;
217}
218
219#define VISUALIZE_COMPLEX_CLIP 0
220
221#if VISUALIZE_COMPLEX_CLIP
tfarina@chromium.org223137f2012-11-21 22:38:36 +0000222 #include "SkRandom.h"
223 SkRandom gRandom;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000224 #define SET_RANDOM_COLOR drawState->setColor(0xff000000 | gRandom.nextU());
225#else
226 #define SET_RANDOM_COLOR
227#endif
228
229namespace {
robertphillips@google.comf294b772012-04-27 14:29:26 +0000230
231////////////////////////////////////////////////////////////////////////////////
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000232// set up the OpenGL blend function to perform the specified
233// boolean operation for alpha clip mask creation
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000234void setup_boolean_blendcoeffs(GrDrawState* drawState, SkRegion::Op op) {
robertphillips@google.comf294b772012-04-27 14:29:26 +0000235
236 switch (op) {
237 case SkRegion::kReplace_Op:
bsalomon@google.com47059542012-06-06 20:51:20 +0000238 drawState->setBlendFunc(kOne_GrBlendCoeff, kZero_GrBlendCoeff);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000239 break;
240 case SkRegion::kIntersect_Op:
bsalomon@google.com47059542012-06-06 20:51:20 +0000241 drawState->setBlendFunc(kDC_GrBlendCoeff, kZero_GrBlendCoeff);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000242 break;
243 case SkRegion::kUnion_Op:
bsalomon@google.com47059542012-06-06 20:51:20 +0000244 drawState->setBlendFunc(kOne_GrBlendCoeff, kISC_GrBlendCoeff);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000245 break;
246 case SkRegion::kXOR_Op:
bsalomon@google.com47059542012-06-06 20:51:20 +0000247 drawState->setBlendFunc(kIDC_GrBlendCoeff, kISC_GrBlendCoeff);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000248 break;
249 case SkRegion::kDifference_Op:
bsalomon@google.com47059542012-06-06 20:51:20 +0000250 drawState->setBlendFunc(kZero_GrBlendCoeff, kISC_GrBlendCoeff);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000251 break;
252 case SkRegion::kReverseDifference_Op:
bsalomon@google.com47059542012-06-06 20:51:20 +0000253 drawState->setBlendFunc(kIDC_GrBlendCoeff, kZero_GrBlendCoeff);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000254 break;
255 default:
256 GrAssert(false);
257 break;
258 }
259}
260
robertphillips@google.com72176b22012-05-23 13:19:12 +0000261}
robertphillips@google.comf294b772012-04-27 14:29:26 +0000262
263////////////////////////////////////////////////////////////////////////////////
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000264bool GrClipMaskManager::drawElement(GrTexture* target,
265 const SkClipStack::Element* element,
266 GrPathRenderer* pr) {
bsalomon@google.com13b85aa2012-06-15 21:09:40 +0000267 GrDrawState* drawState = fGpu->drawState();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000268
269 drawState->setRenderTarget(target->asRenderTarget());
270
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000271 switch (element->getType()) {
272 case Element::kRect_Type:
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000273 // TODO: Do rects directly to the accumulator using a aa-rect GrEffect that covers the
274 // entire mask bounds and writes 0 outside the rect.
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000275 if (element->isAA()) {
bsalomon@google.comcf939ae2012-12-13 19:59:23 +0000276 getContext()->getAARectRenderer()->fillAARect(fGpu,
277 fGpu,
278 element->getRect(),
279 false);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000280 } else {
281 fGpu->drawSimpleRect(element->getRect(), NULL);
282 }
283 return true;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000284 case Element::kPath_Type: {
bsalomon@google.comc6b3e482012-12-07 20:43:52 +0000285 SkTCopyOnFirstWrite<SkPath> path(element->getPath());
286 if (path->isInverseFillType()) {
287 path.writable()->toggleInverseFillType();
288 }
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000289 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000290 if (NULL == pr) {
291 GrPathRendererChain::DrawType type;
292 type = element->isAA() ? GrPathRendererChain::kColorAntiAlias_DrawType :
293 GrPathRendererChain::kColor_DrawType;
294 pr = this->getContext()->getPathRenderer(*path, stroke, fGpu, false, type);
295 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000296 if (NULL == pr) {
297 return false;
298 }
299 pr->drawPath(element->getPath(), stroke, fGpu, element->isAA());
300 break;
301 }
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000302 default:
303 // something is wrong if we're trying to draw an empty element.
304 GrCrash("Unexpected element type");
305 return false;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000306 }
307 return true;
308}
309
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000310bool GrClipMaskManager::canStencilAndDrawElement(GrTexture* target,
311 const SkClipStack::Element* element,
312 GrPathRenderer** pr) {
313 GrDrawState* drawState = fGpu->drawState();
314 drawState->setRenderTarget(target->asRenderTarget());
315
316 switch (element->getType()) {
317 case Element::kRect_Type:
318 return true;
319 case Element::kPath_Type: {
320 SkTCopyOnFirstWrite<SkPath> path(element->getPath());
321 if (path->isInverseFillType()) {
322 path.writable()->toggleInverseFillType();
323 }
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000324 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000325 GrPathRendererChain::DrawType type = element->isAA() ?
326 GrPathRendererChain::kStencilAndColorAntiAlias_DrawType :
327 GrPathRendererChain::kStencilAndColor_DrawType;
328 *pr = this->getContext()->getPathRenderer(*path, stroke, fGpu, false, type);
329 return NULL != *pr;
330 }
331 default:
332 // something is wrong if we're trying to draw an empty element.
333 GrCrash("Unexpected element type");
334 return false;
335 }
336}
337
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000338void GrClipMaskManager::mergeMask(GrTexture* dstMask,
339 GrTexture* srcMask,
340 SkRegion::Op op,
341 const GrIRect& dstBound,
342 const GrIRect& srcBound) {
bsalomon@google.com13b85aa2012-06-15 21:09:40 +0000343 GrDrawState* drawState = fGpu->drawState();
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000344 SkMatrix oldMatrix = drawState->getViewMatrix();
345 drawState->viewMatrix()->reset();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000346
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000347 drawState->setRenderTarget(dstMask->asRenderTarget());
robertphillips@google.comf294b772012-04-27 14:29:26 +0000348
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000349 setup_boolean_blendcoeffs(drawState, op);
skia.committer@gmail.com72b2e6f2012-11-08 02:03:56 +0000350
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000351 SkMatrix sampleM;
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000352 sampleM.setIDiv(srcMask->width(), srcMask->height());
bsalomon@google.comadc65362013-01-28 14:26:09 +0000353 drawState->setEffect(0,
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000354 GrTextureDomainEffect::Create(srcMask,
355 sampleM,
356 GrTextureDomainEffect::MakeTexelDomain(srcMask, srcBound),
357 GrTextureDomainEffect::kDecal_WrapMode))->unref();
358 fGpu->drawSimpleRect(SkRect::MakeFromIRect(dstBound), NULL);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000359
tomhudson@google.com676e6602012-07-10 17:21:48 +0000360 drawState->disableStage(0);
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000361 drawState->setViewMatrix(oldMatrix);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000362}
363
robertphillips@google.com6d62df42012-05-07 18:07:36 +0000364// get a texture to act as a temporary buffer for AA clip boolean operations
365// TODO: given the expense of createTexture we may want to just cache this too
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000366void GrClipMaskManager::getTemp(int width, int height, GrAutoScratchTexture* temp) {
robertphillips@google.comf105b102012-05-14 12:18:26 +0000367 if (NULL != temp->texture()) {
robertphillips@google.com6d62df42012-05-07 18:07:36 +0000368 // we've already allocated the temp texture
369 return;
370 }
371
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000372 GrTextureDesc desc;
373 desc.fFlags = kRenderTarget_GrTextureFlagBit|kNoStencil_GrTextureFlagBit;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000374 desc.fWidth = width;
375 desc.fHeight = height;
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000376 desc.fConfig = kAlpha_8_GrPixelConfig;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000377
robertphillips@google.com2c756812012-05-22 20:28:23 +0000378 temp->set(this->getContext(), desc);
robertphillips@google.com6d62df42012-05-07 18:07:36 +0000379}
380
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000381////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000382// Handles caching & allocation (if needed) of a clip alpha-mask texture for both the sw-upload
383// or gpu-rendered cases. Returns true if there is no more work to be done (i.e., we got a cache
384// hit)
385bool GrClipMaskManager::getMaskTexture(int32_t clipStackGenID,
386 const SkIRect& clipSpaceIBounds,
387 GrTexture** result) {
388 bool cached = fAACache.canReuse(clipStackGenID, clipSpaceIBounds);
389 if (!cached) {
robertphillips@google.comf294b772012-04-27 14:29:26 +0000390
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000391 // There isn't a suitable entry in the cache so we create a new texture to store the mask.
392 // Since we are setting up the cache we know the last lookup was a miss. Free up the
393 // currently cached mask so it can be reused.
394 fAACache.reset();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000395
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000396 GrTextureDesc desc;
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000397 desc.fFlags = kRenderTarget_GrTextureFlagBit;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000398 desc.fWidth = clipSpaceIBounds.width();
399 desc.fHeight = clipSpaceIBounds.height();
400 desc.fConfig = kAlpha_8_GrPixelConfig;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000401
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000402 fAACache.acquireMask(clipStackGenID, desc, clipSpaceIBounds);
robertphillips@google.com8fff3562012-05-11 12:53:50 +0000403 }
404
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000405 *result = fAACache.getLastMask();
406 return cached;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000407}
robertphillips@google.comf294b772012-04-27 14:29:26 +0000408
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000409////////////////////////////////////////////////////////////////////////////////
410// Create a 8-bit clip mask in alpha
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000411GrTexture* GrClipMaskManager::createAlphaClipMask(int32_t clipStackGenID,
412 InitialState initialState,
413 const ElementList& elements,
414 const SkIRect& clipSpaceIBounds) {
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000415 GrAssert(kNone_ClipMaskType == fCurrClipMaskType);
416
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000417 GrTexture* result;
418 if (this->getMaskTexture(clipStackGenID, clipSpaceIBounds, &result)) {
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000419 fCurrClipMaskType = kAlpha_ClipMaskType;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000420 return result;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000421 }
422
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000423 if (NULL == result) {
robertphillips@google.comf105b102012-05-14 12:18:26 +0000424 fAACache.reset();
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000425 return NULL;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000426 }
427
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000428 GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.com13b85aa2012-06-15 21:09:40 +0000429 GrDrawState* drawState = fGpu->drawState();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000430
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000431 // The top-left of the mask corresponds to the top-left corner of the bounds.
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000432 SkVector clipToMaskOffset = {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000433 SkIntToScalar(-clipSpaceIBounds.fLeft),
434 SkIntToScalar(-clipSpaceIBounds.fTop)
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000435 };
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000436 // The texture may be larger than necessary, this rect represents the part of the texture
437 // we populate with a rasterization of the clip.
438 SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height());
439
bsalomon@google.comcf939ae2012-12-13 19:59:23 +0000440 // We're drawing a coverage mask and want coverage to be run through the blend function.
441 drawState->enableState(GrDrawState::kCoverageDrawing_StateBit);
442
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000443 // Set the matrix so that rendered clip elements are transformed to mask space from clip space.
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000444 drawState->viewMatrix()->setTranslate(clipToMaskOffset);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000445
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000446 // The scratch texture that we are drawing into can be substantially larger than the mask. Only
447 // clear the part that we care about.
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000448 fGpu->clear(&maskSpaceIBounds,
449 kAllIn_InitialState == initialState ? 0xffffffff : 0x00000000,
450 result->asRenderTarget());
skia.committer@gmail.comd9f75032012-11-09 02:01:24 +0000451
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000452 // When we use the stencil in the below loop it is important to have this clip installed.
453 // The second pass that zeros the stencil buffer renders the rect maskSpaceIBounds so the first
454 // pass must not set values outside of this bounds or stencil values outside the rect won't be
455 // cleared.
456 GrDrawTarget::AutoClipRestore acr(fGpu, maskSpaceIBounds);
457 drawState->enableState(GrDrawState::kClip_StateBit);
458
robertphillips@google.comf105b102012-05-14 12:18:26 +0000459 GrAutoScratchTexture temp;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000460 // walk through each clip element and perform its set op
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000461 for (ElementList::Iter iter = elements.headIter(); iter.get(); iter.next()) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000462 const Element* element = iter.get();
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000463 SkRegion::Op op = element->getOp();
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000464 bool invert = element->isInverseFilled();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000465
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000466 if (invert || SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) {
467 GrPathRenderer* pr = NULL;
468 bool useTemp = !this->canStencilAndDrawElement(result, element, &pr);
469 GrTexture* dst;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000470 // This is the bounds of the clip element in the space of the alpha-mask. The temporary
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000471 // mask buffer can be substantially larger than the actually clip stack element. We
472 // touch the minimum number of pixels necessary and use decal mode to combine it with
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000473 // the accumulator.
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000474 GrIRect maskSpaceElementIBounds;
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000475
476 if (useTemp) {
477 if (invert) {
478 maskSpaceElementIBounds = maskSpaceIBounds;
479 } else {
480 GrRect elementBounds = element->getBounds();
481 elementBounds.offset(clipToMaskOffset);
482 elementBounds.roundOut(&maskSpaceElementIBounds);
483 }
484
485 this->getTemp(maskSpaceIBounds.fRight, maskSpaceIBounds.fBottom, &temp);
486 if (NULL == temp.texture()) {
487 fAACache.reset();
488 return NULL;
skia.committer@gmail.coma7aedfe2012-12-15 02:03:10 +0000489 }
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000490 dst = temp.texture();
491 // clear the temp target and set blend to replace
492 fGpu->clear(&maskSpaceElementIBounds,
493 invert ? 0xffffffff : 0x00000000,
494 dst->asRenderTarget());
495 setup_boolean_blendcoeffs(drawState, SkRegion::kReplace_Op);
skia.committer@gmail.coma7aedfe2012-12-15 02:03:10 +0000496
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000497 } else {
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000498 // draw directly into the result with the stencil set to make the pixels affected
499 // by the clip shape be non-zero.
500 dst = result;
501 GR_STATIC_CONST_SAME_STENCIL(kStencilInElement,
502 kReplace_StencilOp,
503 kReplace_StencilOp,
504 kAlways_StencilFunc,
505 0xffff,
506 0xffff,
507 0xffff);
508 drawState->setStencil(kStencilInElement);
skia.committer@gmail.coma7aedfe2012-12-15 02:03:10 +0000509 setup_boolean_blendcoeffs(drawState, op);
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000510 }
bsalomon@google.com7b7cdd12012-11-07 16:17:24 +0000511
bsalomon@google.comc6b3e482012-12-07 20:43:52 +0000512 drawState->setAlpha(invert ? 0x00 : 0xff);
bsalomon@google.comc6b3e482012-12-07 20:43:52 +0000513
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000514 if (!this->drawElement(dst, element, pr)) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000515 fAACache.reset();
516 return NULL;
517 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000518
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000519 if (useTemp) {
520 // Now draw into the accumulator using the real operation and the temp buffer as a
521 // texture
522 this->mergeMask(result,
523 temp.texture(),
524 op,
525 maskSpaceIBounds,
526 maskSpaceElementIBounds);
527 } else {
528 // Draw to the exterior pixels (those with a zero stencil value).
529 drawState->setAlpha(invert ? 0xff : 0x00);
530 GR_STATIC_CONST_SAME_STENCIL(kDrawOutsideElement,
531 kZero_StencilOp,
532 kZero_StencilOp,
533 kEqual_StencilFunc,
534 0xffff,
535 0x0000,
536 0xffff);
537 drawState->setStencil(kDrawOutsideElement);
538 fGpu->drawSimpleRect(clipSpaceIBounds);
539 drawState->disableStencil();
540 }
robertphillips@google.comf294b772012-04-27 14:29:26 +0000541 } else {
bsalomon@google.comc6b3e482012-12-07 20:43:52 +0000542 // all the remaining ops can just be directly draw into the accumulation buffer
543 drawState->setAlpha(0xff);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000544 setup_boolean_blendcoeffs(drawState, op);
bsalomon@google.comb68addd2012-12-14 13:36:53 +0000545 this->drawElement(result, element);
robertphillips@google.comf294b772012-04-27 14:29:26 +0000546 }
547 }
548
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000549 fCurrClipMaskType = kAlpha_ClipMaskType;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000550 return result;
robertphillips@google.comf294b772012-04-27 14:29:26 +0000551}
552
553////////////////////////////////////////////////////////////////////////////////
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000554// Create a 1-bit clip mask in the stencil buffer. 'devClipBounds' are in device
robertphillips@google.comf8d904a2012-07-31 12:18:16 +0000555// (as opposed to canvas) coordinates
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000556bool GrClipMaskManager::createStencilClipMask(InitialState initialState,
557 const ElementList& elements,
558 const SkIRect& clipSpaceIBounds,
559 const SkIPoint& clipSpaceToStencilOffset) {
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000560
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000561 GrAssert(kNone_ClipMaskType == fCurrClipMaskType);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000562
bsalomon@google.com13b85aa2012-06-15 21:09:40 +0000563 GrDrawState* drawState = fGpu->drawState();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000564 GrAssert(drawState->isClipState());
565
566 GrRenderTarget* rt = drawState->getRenderTarget();
567 GrAssert(NULL != rt);
568
569 // TODO: dynamically attach a SB when needed.
570 GrStencilBuffer* stencilBuffer = rt->getStencilBuffer();
571 if (NULL == stencilBuffer) {
572 return false;
573 }
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000574 int32_t genID = elements.tail()->getGenID();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000575
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000576 if (stencilBuffer->mustRenderClip(genID, clipSpaceIBounds, clipSpaceToStencilOffset)) {
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000577
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000578 stencilBuffer->setLastClip(genID, clipSpaceIBounds, clipSpaceToStencilOffset);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000579
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000580 GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit);
bsalomon@google.com13b85aa2012-06-15 21:09:40 +0000581 drawState = fGpu->drawState();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000582 drawState->setRenderTarget(rt);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000583
bsalomon@google.com9f131742012-12-13 20:43:56 +0000584 // We set the current clip to the bounds so that our recursive draws are scissored to them.
585 SkIRect stencilSpaceIBounds(clipSpaceIBounds);
586 stencilSpaceIBounds.offset(clipSpaceToStencilOffset);
587 GrDrawTarget::AutoClipRestore acr(fGpu, stencilSpaceIBounds);
588 drawState->enableState(GrDrawState::kClip_StateBit);
589
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000590 // Set the matrix so that rendered clip elements are transformed from clip to stencil space.
591 SkVector translate = {
592 SkIntToScalar(clipSpaceToStencilOffset.fX),
593 SkIntToScalar(clipSpaceToStencilOffset.fY)
594 };
595 drawState->viewMatrix()->setTranslate(translate);
robertphillips@google.comf8d904a2012-07-31 12:18:16 +0000596
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000597#if !VISUALIZE_COMPLEX_CLIP
598 drawState->enableState(GrDrawState::kNoColorWrites_StateBit);
599#endif
600
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000601 int clipBit = stencilBuffer->bits();
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000602 SkASSERT((clipBit <= 16) && "Ganesh only handles 16b or smaller stencil buffers");
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000603 clipBit = (1 << (clipBit-1));
604
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000605 fGpu->clearStencilClip(stencilSpaceIBounds, kAllIn_InitialState == initialState);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000606
607 // walk through each clip element and perform its set op
608 // with the existing clip.
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000609 for (ElementList::Iter iter(elements.headIter()); NULL != iter.get(); iter.next()) {
610 const Element* element = iter.get();
tomhudson@google.com8afae612012-08-14 15:03:35 +0000611 bool fillInverted = false;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000612 // enabled at bottom of loop
613 drawState->disableState(GrGpu::kModifyStencilClip_StateBit);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000614 // if the target is MSAA then we want MSAA enabled when the clip is soft
615 if (rt->isMultisampled()) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000616 drawState->setState(GrDrawState::kHWAntialias_StateBit, element->isAA());
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000617 }
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000618
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000619 // This will be used to determine whether the clip shape can be rendered into the
620 // stencil with arbitrary stencil settings.
621 GrPathRenderer::StencilSupport stencilSupport;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000622
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000623 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
sugoi@google.com12b4e272012-12-06 20:13:11 +0000624
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000625 SkRegion::Op op = element->getOp();
robertphillips@google.comf294b772012-04-27 14:29:26 +0000626
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000627 GrPathRenderer* pr = NULL;
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000628 SkTCopyOnFirstWrite<SkPath> clipPath;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000629 if (Element::kRect_Type == element->getType()) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000630 stencilSupport = GrPathRenderer::kNoRestriction_StencilSupport;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000631 fillInverted = false;
tomhudson@google.com8afae612012-08-14 15:03:35 +0000632 } else {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000633 GrAssert(Element::kPath_Type == element->getType());
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000634 clipPath.init(element->getPath());
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000635 fillInverted = clipPath->isInverseFillType();
636 if (fillInverted) {
637 clipPath.writable()->toggleInverseFillType();
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000638 }
639 pr = this->getContext()->getPathRenderer(*clipPath,
640 stroke,
641 fGpu,
642 false,
643 GrPathRendererChain::kStencilOnly_DrawType,
644 &stencilSupport);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000645 if (NULL == pr) {
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000646 return false;
647 }
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000648 }
649
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000650 int passes;
651 GrStencilSettings stencilSettings[GrStencilSettings::kMaxStencilClipPasses];
652
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000653 bool canRenderDirectToStencil =
654 GrPathRenderer::kNoRestriction_StencilSupport == stencilSupport;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000655 bool canDrawDirectToClip; // Given the renderer, the element,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000656 // fill rule, and set operation can
657 // we render the element directly to
658 // stencil bit used for clipping.
659 canDrawDirectToClip = GrStencilSettings::GetClipPasses(op,
660 canRenderDirectToStencil,
661 clipBit,
662 fillInverted,
663 &passes,
664 stencilSettings);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000665
666 // draw the element to the client stencil bits if necessary
667 if (!canDrawDirectToClip) {
668 GR_STATIC_CONST_SAME_STENCIL(gDrawToStencil,
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000669 kIncClamp_StencilOp,
670 kIncClamp_StencilOp,
671 kAlways_StencilFunc,
672 0xffff,
673 0x0000,
674 0xffff);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000675 SET_RANDOM_COLOR
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000676 if (Element::kRect_Type == element->getType()) {
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000677 *drawState->stencil() = gDrawToStencil;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000678 fGpu->drawSimpleRect(element->getRect(), NULL);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000679 } else {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000680 GrAssert(Element::kPath_Type == element->getType());
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000681 if (canRenderDirectToStencil) {
682 *drawState->stencil() = gDrawToStencil;
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000683 pr->drawPath(*clipPath, stroke, fGpu, false);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000684 } else {
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000685 pr->stencilPath(*clipPath, stroke, fGpu);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000686 }
687 }
688 }
689
690 // now we modify the clip bit by rendering either the clip
691 // element directly or a bounding rect of the entire clip.
692 drawState->enableState(GrGpu::kModifyStencilClip_StateBit);
693 for (int p = 0; p < passes; ++p) {
694 *drawState->stencil() = stencilSettings[p];
695 if (canDrawDirectToClip) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000696 if (Element::kRect_Type == element->getType()) {
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000697 SET_RANDOM_COLOR
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000698 fGpu->drawSimpleRect(element->getRect(), NULL);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000699 } else {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000700 GrAssert(Element::kPath_Type == element->getType());
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000701 SET_RANDOM_COLOR
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000702 pr->drawPath(*clipPath, stroke, fGpu, false);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000703 }
704 } else {
705 SET_RANDOM_COLOR
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000706 // The view matrix is setup to do clip space -> stencil space translation, so
707 // draw rect in clip space.
708 fGpu->drawSimpleRect(SkRect::MakeFromIRect(clipSpaceIBounds), NULL);
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000709 }
710 }
711 }
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000712 }
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000713 // set this last because recursive draws may overwrite it back to kNone.
714 GrAssert(kNone_ClipMaskType == fCurrClipMaskType);
715 fCurrClipMaskType = kStencil_ClipMaskType;
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000716 return true;
717}
718
robertphillips@google.comf8d904a2012-07-31 12:18:16 +0000719
bsalomon@google.com411dad02012-06-05 20:24:20 +0000720// mapping of clip-respecting stencil funcs to normal stencil funcs
721// mapping depends on whether stencil-clipping is in effect.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000722static const GrStencilFunc
bsalomon@google.com411dad02012-06-05 20:24:20 +0000723 gSpecialToBasicStencilFunc[2][kClipStencilFuncCount] = {
724 {// Stencil-Clipping is DISABLED, we are effectively always inside the clip
725 // In the Clip Funcs
726 kAlways_StencilFunc, // kAlwaysIfInClip_StencilFunc
727 kEqual_StencilFunc, // kEqualIfInClip_StencilFunc
728 kLess_StencilFunc, // kLessIfInClip_StencilFunc
729 kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc
730 // Special in the clip func that forces user's ref to be 0.
731 kNotEqual_StencilFunc, // kNonZeroIfInClip_StencilFunc
732 // make ref 0 and do normal nequal.
733 },
734 {// Stencil-Clipping is ENABLED
735 // In the Clip Funcs
736 kEqual_StencilFunc, // kAlwaysIfInClip_StencilFunc
737 // eq stencil clip bit, mask
738 // out user bits.
739
740 kEqual_StencilFunc, // kEqualIfInClip_StencilFunc
741 // add stencil bit to mask and ref
742
743 kLess_StencilFunc, // kLessIfInClip_StencilFunc
744 kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc
745 // for both of these we can add
746 // the clip bit to the mask and
747 // ref and compare as normal
748 // Special in the clip func that forces user's ref to be 0.
749 kLess_StencilFunc, // kNonZeroIfInClip_StencilFunc
750 // make ref have only the clip bit set
751 // and make comparison be less
752 // 10..0 < 1..user_bits..
753 }
754};
755
bsalomon@google.coma3201942012-06-21 19:58:20 +0000756namespace {
757// Sets the settings to clip against the stencil buffer clip while ignoring the
758// client bits.
759const GrStencilSettings& basic_apply_stencil_clip_settings() {
760 // stencil settings to use when clip is in stencil
761 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
762 kKeep_StencilOp,
763 kKeep_StencilOp,
764 kAlwaysIfInClip_StencilFunc,
765 0x0000,
766 0x0000,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000767 0x0000);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000768 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
769}
770}
771
772void GrClipMaskManager::setGpuStencil() {
773 // We make two copies of the StencilSettings here (except in the early
774 // exit scenario. One copy from draw state to the stack var. Then another
775 // from the stack var to the gpu. We could make this class hold a ptr to
776 // GrGpu's fStencilSettings and eliminate the stack copy here.
777
778 const GrDrawState& drawState = fGpu->getDrawState();
779
780 // use stencil for clipping if clipping is enabled and the clip
781 // has been written into the stencil.
782 GrClipMaskManager::StencilClipMode clipMode;
783 if (this->isClipInStencil() && drawState.isClipState()) {
784 clipMode = GrClipMaskManager::kRespectClip_StencilClipMode;
785 // We can't be modifying the clip and respecting it at the same time.
786 GrAssert(!drawState.isStateFlagEnabled(
787 GrGpu::kModifyStencilClip_StateBit));
788 } else if (drawState.isStateFlagEnabled(
789 GrGpu::kModifyStencilClip_StateBit)) {
790 clipMode = GrClipMaskManager::kModifyClip_StencilClipMode;
791 } else {
792 clipMode = GrClipMaskManager::kIgnoreClip_StencilClipMode;
793 }
794
795 GrStencilSettings settings;
796 // The GrGpu client may not be using the stencil buffer but we may need to
797 // enable it in order to respect a stencil clip.
798 if (drawState.getStencil().isDisabled()) {
799 if (GrClipMaskManager::kRespectClip_StencilClipMode == clipMode) {
800 settings = basic_apply_stencil_clip_settings();
801 } else {
802 fGpu->disableStencil();
803 return;
804 }
805 } else {
806 settings = drawState.getStencil();
807 }
808
809 // TODO: dynamically attach a stencil buffer
810 int stencilBits = 0;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000811 GrStencilBuffer* stencilBuffer =
bsalomon@google.coma3201942012-06-21 19:58:20 +0000812 drawState.getRenderTarget()->getStencilBuffer();
813 if (NULL != stencilBuffer) {
814 stencilBits = stencilBuffer->bits();
815 }
816
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000817 GrAssert(fGpu->getCaps().stencilWrapOpsSupport() || !settings.usesWrapOp());
bsalomon@google.comf6601872012-08-28 21:11:35 +0000818 GrAssert(fGpu->getCaps().twoSidedStencilSupport() || !settings.isTwoSided());
bsalomon@google.coma3201942012-06-21 19:58:20 +0000819 this->adjustStencilParams(&settings, clipMode, stencilBits);
820 fGpu->setStencilSettings(settings);
821}
822
823void GrClipMaskManager::adjustStencilParams(GrStencilSettings* settings,
824 StencilClipMode mode,
825 int stencilBitCnt) {
bsalomon@google.com411dad02012-06-05 20:24:20 +0000826 GrAssert(stencilBitCnt > 0);
bsalomon@google.com411dad02012-06-05 20:24:20 +0000827
828 if (kModifyClip_StencilClipMode == mode) {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000829 // We assume that this clip manager itself is drawing to the GrGpu and
830 // has already setup the correct values.
831 return;
bsalomon@google.com411dad02012-06-05 20:24:20 +0000832 }
bsalomon@google.coma3201942012-06-21 19:58:20 +0000833
bsalomon@google.com411dad02012-06-05 20:24:20 +0000834 unsigned int clipBit = (1 << (stencilBitCnt - 1));
835 unsigned int userBits = clipBit - 1;
836
bsalomon@google.coma3201942012-06-21 19:58:20 +0000837 GrStencilSettings::Face face = GrStencilSettings::kFront_Face;
bsalomon@google.comf6601872012-08-28 21:11:35 +0000838 bool twoSided = fGpu->getCaps().twoSidedStencilSupport();
bsalomon@google.com411dad02012-06-05 20:24:20 +0000839
bsalomon@google.coma3201942012-06-21 19:58:20 +0000840 bool finished = false;
841 while (!finished) {
842 GrStencilFunc func = settings->func(face);
843 uint16_t writeMask = settings->writeMask(face);
844 uint16_t funcMask = settings->funcMask(face);
845 uint16_t funcRef = settings->funcRef(face);
846
847 GrAssert((unsigned) func < kStencilFuncCount);
848
849 writeMask &= userBits;
850
851 if (func >= kBasicStencilFuncCount) {
852 int respectClip = kRespectClip_StencilClipMode == mode;
853 if (respectClip) {
854 // The GrGpu class should have checked this
855 GrAssert(this->isClipInStencil());
856 switch (func) {
857 case kAlwaysIfInClip_StencilFunc:
858 funcMask = clipBit;
859 funcRef = clipBit;
860 break;
861 case kEqualIfInClip_StencilFunc:
862 case kLessIfInClip_StencilFunc:
863 case kLEqualIfInClip_StencilFunc:
864 funcMask = (funcMask & userBits) | clipBit;
865 funcRef = (funcRef & userBits) | clipBit;
866 break;
867 case kNonZeroIfInClip_StencilFunc:
868 funcMask = (funcMask & userBits) | clipBit;
869 funcRef = clipBit;
870 break;
871 default:
872 GrCrash("Unknown stencil func");
873 }
874 } else {
875 funcMask &= userBits;
876 funcRef &= userBits;
bsalomon@google.com411dad02012-06-05 20:24:20 +0000877 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000878 const GrStencilFunc* table =
bsalomon@google.coma3201942012-06-21 19:58:20 +0000879 gSpecialToBasicStencilFunc[respectClip];
880 func = table[func - kBasicStencilFuncCount];
881 GrAssert(func >= 0 && func < kBasicStencilFuncCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +0000882 } else {
bsalomon@google.coma3201942012-06-21 19:58:20 +0000883 funcMask &= userBits;
884 funcRef &= userBits;
bsalomon@google.com411dad02012-06-05 20:24:20 +0000885 }
bsalomon@google.coma3201942012-06-21 19:58:20 +0000886
887 settings->setFunc(face, func);
888 settings->setWriteMask(face, writeMask);
889 settings->setFuncMask(face, funcMask);
890 settings->setFuncRef(face, funcRef);
891
892 if (GrStencilSettings::kFront_Face == face) {
893 face = GrStencilSettings::kBack_Face;
894 finished = !twoSided;
895 } else {
896 finished = true;
897 }
bsalomon@google.com411dad02012-06-05 20:24:20 +0000898 }
bsalomon@google.coma3201942012-06-21 19:58:20 +0000899 if (!twoSided) {
900 settings->copyFrontSettingsToBack();
901 }
bsalomon@google.com411dad02012-06-05 20:24:20 +0000902}
903
904////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000905GrTexture* GrClipMaskManager::createSoftwareClipMask(int32_t clipStackGenID,
906 GrReducedClip::InitialState initialState,
907 const GrReducedClip::ElementList& elements,
908 const SkIRect& clipSpaceIBounds) {
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000909 GrAssert(kNone_ClipMaskType == fCurrClipMaskType);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000910
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000911 GrTexture* result;
912 if (this->getMaskTexture(clipStackGenID, clipSpaceIBounds, &result)) {
913 return result;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000914 }
915
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000916 if (NULL == result) {
robertphillips@google.comf105b102012-05-14 12:18:26 +0000917 fAACache.reset();
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000918 return NULL;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000919 }
920
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000921 // The mask texture may be larger than necessary. We round out the clip space bounds and pin
922 // the top left corner of the resulting rect to the top left of the texture.
923 SkIRect maskSpaceIBounds = SkIRect::MakeWH(clipSpaceIBounds.width(), clipSpaceIBounds.height());
924
robertphillips@google.com2c756812012-05-22 20:28:23 +0000925 GrSWMaskHelper helper(this->getContext());
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000926
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000927 SkMatrix matrix;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000928 matrix.setTranslate(SkIntToScalar(-clipSpaceIBounds.fLeft),
929 SkIntToScalar(-clipSpaceIBounds.fTop));
930 helper.init(maskSpaceIBounds, &matrix);
931
932 helper.clear(kAllIn_InitialState == initialState ? 0xFF : 0x00);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000933
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000934 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
sugoi@google.com12b4e272012-12-06 20:13:11 +0000935
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000936 for (ElementList::Iter iter(elements.headIter()) ; NULL != iter.get(); iter.next()) {
robertphillips@google.coma6f11c42012-07-23 17:39:44 +0000937
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000938 const Element* element = iter.get();
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000939 SkRegion::Op op = element->getOp();
robertphillips@google.comfa662942012-05-17 12:20:22 +0000940
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000941 if (SkRegion::kIntersect_Op == op || SkRegion::kReverseDifference_Op == op) {
942 // Intersect and reverse difference require modifying pixels outside of the geometry
943 // that is being "drawn". In both cases we erase all the pixels outside of the geometry
944 // but leave the pixels inside the geometry alone. For reverse difference we invert all
945 // the pixels before clearing the ones outside the geometry.
robertphillips@google.comfa662942012-05-17 12:20:22 +0000946 if (SkRegion::kReverseDifference_Op == op) {
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000947 SkRect temp = SkRect::MakeFromIRect(clipSpaceIBounds);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000948 // invert the entire scene
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000949 helper.draw(temp, SkRegion::kXOR_Op, false, 0xFF);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000950 }
951
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000952 if (Element::kRect_Type == element->getType()) {
robertphillips@google.comfa662942012-05-17 12:20:22 +0000953 // convert the rect to a path so we can invert the fill
954 SkPath temp;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000955 temp.addRect(element->getRect());
sugoi@google.com12b4e272012-12-06 20:13:11 +0000956 temp.setFillType(SkPath::kInverseEvenOdd_FillType);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000957
sugoi@google.com12b4e272012-12-06 20:13:11 +0000958 helper.draw(temp, stroke, SkRegion::kReplace_Op,
959 element->isAA(),
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000960 0x00);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000961 } else {
962 GrAssert(Element::kPath_Type == element->getType());
sugoi@google.com12b4e272012-12-06 20:13:11 +0000963 SkPath clipPath = element->getPath();
964 clipPath.toggleInverseFillType();
skia.committer@gmail.comd21444a2012-12-07 02:01:25 +0000965 helper.draw(clipPath, stroke,
robertphillips@google.comfa662942012-05-17 12:20:22 +0000966 SkRegion::kReplace_Op,
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000967 element->isAA(),
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000968 0x00);
robertphillips@google.comfa662942012-05-17 12:20:22 +0000969 }
970
971 continue;
972 }
973
974 // The other ops (union, xor, diff) only affect pixels inside
975 // the geometry so they can just be drawn normally
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000976 if (Element::kRect_Type == element->getType()) {
977 helper.draw(element->getRect(), op, element->isAA(), 0xFF);
978 } else {
979 GrAssert(Element::kPath_Type == element->getType());
sugoi@google.com12b4e272012-12-06 20:13:11 +0000980 helper.draw(element->getPath(), stroke, op, element->isAA(), 0xFF);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000981 }
982 }
983
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000984 helper.toTexture(result, kAllIn_InitialState == initialState ? 0xFF : 0x00);
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000985
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000986 fCurrClipMaskType = kAlpha_ClipMaskType;
bsalomon@google.com4c2443e2012-12-06 20:58:57 +0000987 return result;
robertphillips@google.com6b70a7b2012-05-11 15:32:48 +0000988}
989
robertphillips@google.comf294b772012-04-27 14:29:26 +0000990////////////////////////////////////////////////////////////////////////////////
robertphillips@google.comf105b102012-05-14 12:18:26 +0000991void GrClipMaskManager::releaseResources() {
robertphillips@google.comf105b102012-05-14 12:18:26 +0000992 fAACache.releaseResources();
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000993}
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000994
995void GrClipMaskManager::setGpu(GrGpu* gpu) {
996 fGpu = gpu;
997 fAACache.setContext(gpu->getContext());
998}