blob: bb914d5844ff63a0f067210188dd96bb30bfc58e [file] [log] [blame]
csmartdaltonbf4a8f92016-09-06 10:01:06 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkClipStack.h"
10#include "SkRRect.h"
11
12#if SK_SUPPORT_GPU
13# include "GrAppliedClip.h"
Brian Osman11052242016-10-27 14:47:55 -040014# include "GrRenderTargetContext.h"
15# include "GrRenderTargetContextPriv.h"
csmartdaltonbf4a8f92016-09-06 10:01:06 -070016# include "GrFixedClip.h"
17# include "GrReducedClip.h"
18# include "GrRenderTargetPriv.h"
19# include "GrResourceProvider.h"
20# include "effects/GrTextureDomain.h"
21#endif
22
23constexpr static SkIRect kDeviceRect = {0, 0, 600, 600};
24constexpr static SkIRect kLayerRect = {25, 25, 575, 575};
25constexpr static SkIRect kCoverRect = {50, 50, 550, 550};
csmartdaltonbf4a8f92016-09-06 10:01:06 -070026
27namespace skiagm {
28
29////////////////////////////////////////////////////////////////////////////////////////////////////
30
31class WindowRectanglesBaseGM : public GM {
32protected:
33 virtual void onCoverClipStack(const SkClipStack&, SkCanvas*) = 0;
34
35private:
36 SkISize onISize() override { return SkISize::Make(kDeviceRect.width(), kDeviceRect.height()); }
37 void onDraw(SkCanvas*) final;
38};
39
40void WindowRectanglesBaseGM::onDraw(SkCanvas* canvas) {
41 sk_tool_utils::draw_checkerboard(canvas, 0xffffffff, 0xffc6c3c6, 25);
42 canvas->saveLayer(SkRect::Make(kLayerRect), nullptr);
43
44 SkClipStack stack;
Brian Salomona3b45d42016-10-03 11:36:16 -040045 stack.clipRect(SkRect::MakeXYWH(370.75, 80.25, 149, 100), SkMatrix::I(),
46 SkCanvas::kDifference_Op, false);
47 stack.clipRect(SkRect::MakeXYWH(80.25, 420.75, 150, 100), SkMatrix::I(),
48 SkCanvas::kDifference_Op, true);
49 stack.clipRRect(SkRRect::MakeRectXY(SkRect::MakeXYWH(200, 200, 200, 200), 60, 45),
50 SkMatrix::I(), SkCanvas::kDifference_Op, true);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070051
52 SkRRect nine;
53 nine.setNinePatch(SkRect::MakeXYWH(550 - 30.25 - 100, 370.75, 100, 150), 12, 35, 23, 20);
Brian Salomona3b45d42016-10-03 11:36:16 -040054 stack.clipRRect(nine, SkMatrix::I(), SkCanvas::kDifference_Op, true);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070055
56 SkRRect complx;
57 SkVector complxRadii[4] = {{6, 4}, {8, 12}, {16, 24}, {48, 32}};
58 complx.setRectRadii(SkRect::MakeXYWH(80.25, 80.75, 100, 149), complxRadii);
Brian Salomona3b45d42016-10-03 11:36:16 -040059 stack.clipRRect(complx, SkMatrix::I(), SkCanvas::kDifference_Op, false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070060
61 this->onCoverClipStack(stack, canvas);
62
63 canvas->restore();
64}
65
66////////////////////////////////////////////////////////////////////////////////////////////////////
67
68/**
69 * Draws a clip that will exercise window rectangles if they are supported.
70 */
71class WindowRectanglesGM : public WindowRectanglesBaseGM {
72private:
73 SkString onShortName() final { return SkString("windowrectangles"); }
74 void onCoverClipStack(const SkClipStack&, SkCanvas*) final;
75};
76
77/**
78 * This is a simple helper class for resetting a canvas's clip to our test’s SkClipStack.
79 */
80class ReplayClipStackVisitor final : public SkCanvasClipVisitor {
81public:
reed73603f32016-09-20 08:42:38 -070082 typedef SkCanvas::ClipOp Op;
csmartdaltonbf4a8f92016-09-06 10:01:06 -070083 ReplayClipStackVisitor(SkCanvas* canvas) : fCanvas(canvas) {}
84 void clipRect(const SkRect& r, Op op, bool aa) override { fCanvas->clipRect(r, op, aa); }
85 void clipRRect(const SkRRect& rr, Op op, bool aa) override { fCanvas->clipRRect(rr, op, aa); }
86 void clipPath(const SkPath&, Op, bool) override { SkFAIL("Not implemented"); }
87private:
88 SkCanvas* const fCanvas;
89};
90
91void WindowRectanglesGM::onCoverClipStack(const SkClipStack& stack, SkCanvas* canvas) {
92 SkPaint paint;
93 paint.setColor(0xff00aa80);
94
95 // Set up the canvas's clip to match our SkClipStack.
96 ReplayClipStackVisitor visitor(canvas);
97 SkClipStack::Iter iter(stack, SkClipStack::Iter::kBottom_IterStart);
98 for (const SkClipStack::Element* element = iter.next(); element; element = iter.next()) {
99 element->replay(&visitor);
100 }
101
102 canvas->drawRect(SkRect::Make(kCoverRect), paint);
103}
104
105DEF_GM( return new WindowRectanglesGM(); )
106
107////////////////////////////////////////////////////////////////////////////////////////////////////
108
109#if SK_SUPPORT_GPU
110
mtklein0a441072016-09-06 11:45:31 -0700111constexpr static int kNumWindows = 8;
112
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700113/**
114 * Visualizes the mask (alpha or stencil) for a clip with several window rectangles. The purpose of
115 * this test is to verify that window rectangles are being used during clip mask generation, and to
116 * visualize where the window rectangles are placed.
117 *
118 * We use window rectangles when generating the clip mask because there is no need to invest time
119 * defining those regions where window rectangles will be in effect during the actual draw anyway.
120 *
121 * This test works by filling the entire clip mask with a small checkerboard pattern before drawing
122 * it, and then covering the mask with a solid color once it has been generated. The regions inside
123 * window rectangles or outside the scissor should still have the initial checkerboard intact.
124 */
125class WindowRectanglesMaskGM : public WindowRectanglesBaseGM {
126private:
127 constexpr static int kMaskCheckerSize = 5;
128 SkString onShortName() final { return SkString("windowrectangles_mask"); }
129 void onCoverClipStack(const SkClipStack&, SkCanvas*) final;
Brian Osman11052242016-10-27 14:47:55 -0400130 void visualizeAlphaMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&,
131 const GrPaint&);
132 void visualizeStencilMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&,
133 const GrPaint&);
134 void stencilCheckerboard(GrRenderTargetContext*, bool flip);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700135 void fail(SkCanvas*);
136};
137
138/**
139 * Base class for GrClips that visualize a clip mask.
140 */
141class MaskOnlyClipBase : public GrClip {
142private:
143 bool quickContains(const SkRect&) const final { return false; }
144 bool isRRect(const SkRect& rtBounds, SkRRect* rr, bool* aa) const final { return false; }
145 void getConservativeBounds(int width, int height, SkIRect* rect, bool* iior) const final {
146 rect->set(0, 0, width, height);
147 if (iior) {
148 *iior = false;
149 }
150 }
151};
152
153/**
154 * This class clips a cover by an alpha mask. We use it to visualize the alpha clip mask.
155 */
156class AlphaOnlyClip final : public MaskOnlyClipBase {
157public:
158 AlphaOnlyClip(GrTexture* mask, int x, int y) {
159 int w = mask->width(), h = mask->height();
Brian Salomon2ebd0c82016-10-03 17:15:28 -0400160 fFP = GrDeviceSpaceTextureDecalFragmentProcessor::Make(mask, SkIRect::MakeWH(w, h), {x, y});
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700161 }
162private:
Brian Osman11052242016-10-27 14:47:55 -0400163 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700164 out->addCoverageFP(fFP);
165 return true;
166 }
167 sk_sp<GrFragmentProcessor> fFP;
168};
169
170/**
171 * This class clips a cover by the stencil clip bit. We use it to visualize the stencil mask.
172 */
173class StencilOnlyClip final : public MaskOnlyClipBase {
174private:
Brian Osman11052242016-10-27 14:47:55 -0400175 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700176 out->addStencilClip();
177 return true;
178 }
179};
180
181void WindowRectanglesMaskGM::onCoverClipStack(const SkClipStack& stack, SkCanvas* canvas) {
182 GrContext* ctx = canvas->getGrContext();
Brian Osman11052242016-10-27 14:47:55 -0400183 GrRenderTargetContext* rtc = canvas->internal_private_accessTopLayerRenderTargetContext();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700184
Brian Osman11052242016-10-27 14:47:55 -0400185 if (!ctx || !rtc ||
186 rtc->accessRenderTarget()->renderTargetPriv().maxWindowRectangles() < kNumWindows) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700187 this->fail(canvas);
188 return;
189 }
190
191 const GrReducedClip reducedClip(stack, SkRect::Make(kCoverRect), kNumWindows);
192
193 GrPaint paint;
194 paint.setAntiAlias(true);
Brian Osman11052242016-10-27 14:47:55 -0400195 if (!rtc->isStencilBufferMultisampled()) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700196 paint.setColor4f(GrColor4f(0, 0.25f, 1, 1));
Brian Osman11052242016-10-27 14:47:55 -0400197 this->visualizeAlphaMask(ctx, rtc, reducedClip, paint);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700198 } else {
199 paint.setColor4f(GrColor4f(1, 0.25f, 0.25f, 1));
Brian Osman11052242016-10-27 14:47:55 -0400200 this->visualizeStencilMask(ctx, rtc, reducedClip, paint);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700201 }
202}
203
Brian Osman11052242016-10-27 14:47:55 -0400204void WindowRectanglesMaskGM::visualizeAlphaMask(GrContext* ctx, GrRenderTargetContext* rtc,
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700205 const GrReducedClip& reducedClip,
206 const GrPaint& paint) {
Brian Osman11052242016-10-27 14:47:55 -0400207 sk_sp<GrRenderTargetContext> maskDC(
208 ctx->makeRenderTargetContextWithFallback(SkBackingFit::kExact, kLayerRect.width(),
209 kLayerRect.height(), kAlpha_8_GrPixelConfig,
210 nullptr));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700211 if (!maskDC ||
212 !ctx->resourceProvider()->attachStencilAttachment(maskDC->accessRenderTarget())) {
213 return;
214 }
215
216 // Draw a checker pattern into the alpha mask so we can visualize the regions left untouched by
217 // the clip mask generation.
218 this->stencilCheckerboard(maskDC.get(), true);
219 maskDC->clear(nullptr, GrColorPackA4(0xff), true);
Brian Osman11052242016-10-27 14:47:55 -0400220 maskDC->renderTargetContextPriv().drawAndStencilRect(StencilOnlyClip(),
221 &GrUserStencilSettings::kUnused,
222 SkRegion::kDifference_Op, false, false,
223 SkMatrix::I(),
224 SkRect::MakeIWH(maskDC->width(),
225 maskDC->height()));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700226 reducedClip.drawAlphaClipMask(maskDC.get());
227 sk_sp<GrTexture> mask(maskDC->asTexture());
228
229 int x = kCoverRect.x() - kLayerRect.x(),
230 y = kCoverRect.y() - kLayerRect.y();
231
232 // Now visualize the alpha mask by drawing a rect over the area where it is defined. The regions
233 // inside window rectangles or outside the scissor should still have the initial checkerboard
234 // intact. (This verifies we didn't spend any time modifying those pixels in the mask.)
235 AlphaOnlyClip clip(mask.get(), x, y);
Brian Osman11052242016-10-27 14:47:55 -0400236 rtc->drawRect(clip, paint, SkMatrix::I(),
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700237 SkRect::Make(SkIRect::MakeXYWH(x, y, mask->width(), mask->height())));
238}
239
Brian Osman11052242016-10-27 14:47:55 -0400240void WindowRectanglesMaskGM::visualizeStencilMask(GrContext* ctx, GrRenderTargetContext* rtc,
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700241 const GrReducedClip& reducedClip,
242 const GrPaint& paint) {
Brian Osman11052242016-10-27 14:47:55 -0400243 if (!ctx->resourceProvider()->attachStencilAttachment(rtc->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700244 return;
245 }
246
247 // Draw a checker pattern into the stencil buffer so we can visualize the regions left untouched
248 // by the clip mask generation.
Brian Osman11052242016-10-27 14:47:55 -0400249 this->stencilCheckerboard(rtc, false);
250 reducedClip.drawStencilClipMask(ctx, rtc, {kLayerRect.x(), kLayerRect.y()});
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700251
252 // Now visualize the stencil mask by covering the entire render target. The regions inside
253 // window rectangless or outside the scissor should still have the initial checkerboard intact.
254 // (This verifies we didn't spend any time modifying those pixels in the mask.)
Brian Osman11052242016-10-27 14:47:55 -0400255 rtc->drawPaint(StencilOnlyClip(), paint, SkMatrix::I());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700256}
257
Brian Osman11052242016-10-27 14:47:55 -0400258void WindowRectanglesMaskGM::stencilCheckerboard(GrRenderTargetContext* rtc, bool flip) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700259 constexpr static GrUserStencilSettings kSetClip(
260 GrUserStencilSettings::StaticInit<
261 0,
262 GrUserStencilTest::kAlways,
263 0,
264 GrUserStencilOp::kSetClipBit,
265 GrUserStencilOp::kKeep,
266 0>()
267 );
268
Brian Osman11052242016-10-27 14:47:55 -0400269 rtc->renderTargetContextPriv().clearStencilClip(GrFixedClip::Disabled(), false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700270
271 for (int y = 0; y < kLayerRect.height(); y += kMaskCheckerSize) {
272 for (int x = (y & 1) == flip ? 0 : kMaskCheckerSize;
273 x < kLayerRect.width(); x += 2 * kMaskCheckerSize) {
274 SkIRect checker = SkIRect::MakeXYWH(x, y, kMaskCheckerSize, kMaskCheckerSize);
Brian Osman11052242016-10-27 14:47:55 -0400275 rtc->renderTargetContextPriv().stencilRect(GrNoClip(), &kSetClip, false, SkMatrix::I(),
276 SkRect::Make(checker));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700277 }
278 }
279}
280
281void WindowRectanglesMaskGM::fail(SkCanvas* canvas) {
282 SkPaint paint;
283 paint.setAntiAlias(true);
284 paint.setTextAlign(SkPaint::kCenter_Align);
285 paint.setTextSize(20);
286 sk_tool_utils::set_portable_typeface(&paint);
287
288 SkString errorMsg;
289 errorMsg.printf("Requires GPU with %i window rectangles", kNumWindows);
290
291 canvas->clipRect(SkRect::Make(kCoverRect));
292 canvas->clear(SK_ColorWHITE);
293 canvas->drawText(errorMsg.c_str(), errorMsg.size(), SkIntToScalar(kCoverRect.centerX()),
294 SkIntToScalar(kCoverRect.centerY() - 10), paint);
295}
296
297DEF_GM( return new WindowRectanglesMaskGM(); )
298
299#endif
300
301}