blob: 8110574a6545d53ac589eac8f285401600320ad9 [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"
Mike Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
csmartdaltonbf4a8f92016-09-06 10:01:06 -070010#include "SkClipStack.h"
11#include "SkRRect.h"
12
13#if SK_SUPPORT_GPU
14# include "GrAppliedClip.h"
Brian Osman11052242016-10-27 14:47:55 -040015# include "GrRenderTargetContext.h"
16# include "GrRenderTargetContextPriv.h"
csmartdaltonbf4a8f92016-09-06 10:01:06 -070017# include "GrFixedClip.h"
18# include "GrReducedClip.h"
19# include "GrRenderTargetPriv.h"
20# include "GrResourceProvider.h"
21# include "effects/GrTextureDomain.h"
22#endif
23
24constexpr static SkIRect kDeviceRect = {0, 0, 600, 600};
csmartdaltonbf4a8f92016-09-06 10:01:06 -070025constexpr 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);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070042
43 SkClipStack stack;
Brian Salomona3b45d42016-10-03 11:36:16 -040044 stack.clipRect(SkRect::MakeXYWH(370.75, 80.25, 149, 100), SkMatrix::I(),
Mike Reedc1f77742016-12-09 09:00:50 -050045 kDifference_SkClipOp, false);
Brian Salomona3b45d42016-10-03 11:36:16 -040046 stack.clipRect(SkRect::MakeXYWH(80.25, 420.75, 150, 100), SkMatrix::I(),
Mike Reedc1f77742016-12-09 09:00:50 -050047 kDifference_SkClipOp, true);
Brian Salomona3b45d42016-10-03 11:36:16 -040048 stack.clipRRect(SkRRect::MakeRectXY(SkRect::MakeXYWH(200, 200, 200, 200), 60, 45),
Mike Reedc1f77742016-12-09 09:00:50 -050049 SkMatrix::I(), kDifference_SkClipOp, true);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070050
51 SkRRect nine;
52 nine.setNinePatch(SkRect::MakeXYWH(550 - 30.25 - 100, 370.75, 100, 150), 12, 35, 23, 20);
Mike Reedc1f77742016-12-09 09:00:50 -050053 stack.clipRRect(nine, SkMatrix::I(), kDifference_SkClipOp, true);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070054
55 SkRRect complx;
56 SkVector complxRadii[4] = {{6, 4}, {8, 12}, {16, 24}, {48, 32}};
57 complx.setRectRadii(SkRect::MakeXYWH(80.25, 80.75, 100, 149), complxRadii);
Mike Reedc1f77742016-12-09 09:00:50 -050058 stack.clipRRect(complx, SkMatrix::I(), kDifference_SkClipOp, false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070059
60 this->onCoverClipStack(stack, canvas);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070061}
62
63////////////////////////////////////////////////////////////////////////////////////////////////////
64
65/**
66 * Draws a clip that will exercise window rectangles if they are supported.
67 */
68class WindowRectanglesGM : public WindowRectanglesBaseGM {
69private:
70 SkString onShortName() final { return SkString("windowrectangles"); }
71 void onCoverClipStack(const SkClipStack&, SkCanvas*) final;
72};
73
csmartdaltonbf4a8f92016-09-06 10:01:06 -070074void WindowRectanglesGM::onCoverClipStack(const SkClipStack& stack, SkCanvas* canvas) {
75 SkPaint paint;
76 paint.setColor(0xff00aa80);
77
78 // Set up the canvas's clip to match our SkClipStack.
csmartdaltonbf4a8f92016-09-06 10:01:06 -070079 SkClipStack::Iter iter(stack, SkClipStack::Iter::kBottom_IterStart);
80 for (const SkClipStack::Element* element = iter.next(); element; element = iter.next()) {
Mike Reed598524d2017-03-08 13:13:44 -050081 SkClipOp op = element->getOp();
82 bool isAA = element->isAA();
83 switch (element->getType()) {
84 case SkClipStack::Element::kPath_Type:
85 canvas->clipPath(element->getPath(), op, isAA);
86 break;
87 case SkClipStack::Element::kRRect_Type:
88 canvas->clipRRect(element->getRRect(), op, isAA);
89 break;
90 case SkClipStack::Element::kRect_Type:
91 canvas->clipRect(element->getRect(), op, isAA);
92 break;
93 case SkClipStack::Element::kEmpty_Type:
94 canvas->clipRect({ 0, 0, 0, 0 }, kIntersect_SkClipOp, false);
95 break;
96 }
csmartdaltonbf4a8f92016-09-06 10:01:06 -070097 }
98
99 canvas->drawRect(SkRect::Make(kCoverRect), paint);
100}
101
102DEF_GM( return new WindowRectanglesGM(); )
103
104////////////////////////////////////////////////////////////////////////////////////////////////////
105
106#if SK_SUPPORT_GPU
107
mtklein0a441072016-09-06 11:45:31 -0700108constexpr static int kNumWindows = 8;
109
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700110/**
111 * Visualizes the mask (alpha or stencil) for a clip with several window rectangles. The purpose of
112 * this test is to verify that window rectangles are being used during clip mask generation, and to
113 * visualize where the window rectangles are placed.
114 *
115 * We use window rectangles when generating the clip mask because there is no need to invest time
116 * defining those regions where window rectangles will be in effect during the actual draw anyway.
117 *
118 * This test works by filling the entire clip mask with a small checkerboard pattern before drawing
119 * it, and then covering the mask with a solid color once it has been generated. The regions inside
120 * window rectangles or outside the scissor should still have the initial checkerboard intact.
121 */
122class WindowRectanglesMaskGM : public WindowRectanglesBaseGM {
123private:
124 constexpr static int kMaskCheckerSize = 5;
125 SkString onShortName() final { return SkString("windowrectangles_mask"); }
126 void onCoverClipStack(const SkClipStack&, SkCanvas*) final;
Brian Salomon82f44312017-01-11 13:42:54 -0500127 void visualizeAlphaMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&, GrPaint&&);
128 void visualizeStencilMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&, GrPaint&&);
Brian Osman11052242016-10-27 14:47:55 -0400129 void stencilCheckerboard(GrRenderTargetContext*, bool flip);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700130 void fail(SkCanvas*);
131};
132
133/**
134 * Base class for GrClips that visualize a clip mask.
135 */
136class MaskOnlyClipBase : public GrClip {
137private:
138 bool quickContains(const SkRect&) const final { return false; }
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500139 bool isRRect(const SkRect& rtBounds, SkRRect* rr, GrAA*) const final { return false; }
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700140 void getConservativeBounds(int width, int height, SkIRect* rect, bool* iior) const final {
141 rect->set(0, 0, width, height);
142 if (iior) {
143 *iior = false;
144 }
145 }
146};
147
148/**
149 * This class clips a cover by an alpha mask. We use it to visualize the alpha clip mask.
150 */
151class AlphaOnlyClip final : public MaskOnlyClipBase {
152public:
Robert Phillips296b1cc2017-03-15 10:42:12 -0400153 AlphaOnlyClip(GrResourceProvider* resourceProvider, sk_sp<GrTextureProxy> mask, int x, int y) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700154 int w = mask->width(), h = mask->height();
Robert Phillips296b1cc2017-03-15 10:42:12 -0400155 fFP = GrDeviceSpaceTextureDecalFragmentProcessor::Make(resourceProvider, std::move(mask),
Robert Phillips40fd7c92017-01-30 08:06:27 -0500156 SkIRect::MakeWH(w, h), {x, y});
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700157 }
158private:
Brian Salomon97180af2017-03-14 13:42:58 -0400159 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out,
160 SkRect* bounds) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700161 out->addCoverageFP(fFP);
162 return true;
163 }
164 sk_sp<GrFragmentProcessor> fFP;
165};
166
167/**
168 * This class clips a cover by the stencil clip bit. We use it to visualize the stencil mask.
169 */
170class StencilOnlyClip final : public MaskOnlyClipBase {
171private:
Brian Salomon97180af2017-03-14 13:42:58 -0400172 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out,
173 SkRect* bounds) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700174 out->addStencilClip();
175 return true;
176 }
177};
178
179void WindowRectanglesMaskGM::onCoverClipStack(const SkClipStack& stack, SkCanvas* canvas) {
180 GrContext* ctx = canvas->getGrContext();
Brian Osman11052242016-10-27 14:47:55 -0400181 GrRenderTargetContext* rtc = canvas->internal_private_accessTopLayerRenderTargetContext();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700182
Robert Phillipsec2249f2016-11-09 08:54:35 -0500183 if (!ctx || !rtc || rtc->priv().maxWindowRectangles() < kNumWindows) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700184 this->fail(canvas);
185 return;
186 }
187
188 const GrReducedClip reducedClip(stack, SkRect::Make(kCoverRect), kNumWindows);
189
190 GrPaint paint;
Brian Osman11052242016-10-27 14:47:55 -0400191 if (!rtc->isStencilBufferMultisampled()) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700192 paint.setColor4f(GrColor4f(0, 0.25f, 1, 1));
Brian Salomon82f44312017-01-11 13:42:54 -0500193 this->visualizeAlphaMask(ctx, rtc, reducedClip, std::move(paint));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700194 } else {
195 paint.setColor4f(GrColor4f(1, 0.25f, 0.25f, 1));
Brian Salomon82f44312017-01-11 13:42:54 -0500196 this->visualizeStencilMask(ctx, rtc, reducedClip, std::move(paint));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700197 }
198}
199
Brian Osman11052242016-10-27 14:47:55 -0400200void WindowRectanglesMaskGM::visualizeAlphaMask(GrContext* ctx, GrRenderTargetContext* rtc,
Brian Salomon82f44312017-01-11 13:42:54 -0500201 const GrReducedClip& reducedClip, GrPaint&& paint) {
Brian Salomon9a767722017-03-13 17:57:28 -0400202 const int padRight = (kDeviceRect.right() - kCoverRect.right()) / 2;
203 const int padBottom = (kDeviceRect.bottom() - kCoverRect.bottom()) / 2;
Brian Osman693a5402016-10-27 15:13:22 -0400204 sk_sp<GrRenderTargetContext> maskRTC(
Brian Salomon9a767722017-03-13 17:57:28 -0400205 ctx->makeRenderTargetContextWithFallback(SkBackingFit::kExact,
206 kCoverRect.width() + padRight,
207 kCoverRect.height() + padBottom,
208 kAlpha_8_GrPixelConfig, nullptr));
Brian Osman693a5402016-10-27 15:13:22 -0400209 if (!maskRTC ||
210 !ctx->resourceProvider()->attachStencilAttachment(maskRTC->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700211 return;
212 }
213
214 // Draw a checker pattern into the alpha mask so we can visualize the regions left untouched by
215 // the clip mask generation.
Brian Osman693a5402016-10-27 15:13:22 -0400216 this->stencilCheckerboard(maskRTC.get(), true);
217 maskRTC->clear(nullptr, GrColorPackA4(0xff), true);
218 maskRTC->priv().drawAndStencilRect(StencilOnlyClip(), &GrUserStencilSettings::kUnused,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500219 SkRegion::kDifference_Op, false, GrAA::kNo, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400220 SkRect::MakeIWH(maskRTC->width(), maskRTC->height()));
221 reducedClip.drawAlphaClipMask(maskRTC.get());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700222
Brian Salomon9a767722017-03-13 17:57:28 -0400223 int x = kCoverRect.x() - kDeviceRect.x(),
224 y = kCoverRect.y() - kDeviceRect.y();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700225
226 // Now visualize the alpha mask by drawing a rect over the area where it is defined. The regions
227 // inside window rectangles or outside the scissor should still have the initial checkerboard
228 // intact. (This verifies we didn't spend any time modifying those pixels in the mask.)
Robert Phillips296b1cc2017-03-15 10:42:12 -0400229 AlphaOnlyClip clip(ctx->resourceProvider(), maskRTC->asTextureProxyRef(), x, y);
Brian Salomon82f44312017-01-11 13:42:54 -0500230 rtc->drawRect(clip, std::move(paint), GrAA::kYes, SkMatrix::I(),
Robert Phillips40fd7c92017-01-30 08:06:27 -0500231 SkRect::Make(SkIRect::MakeXYWH(x, y, maskRTC->width(), maskRTC->height())));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700232}
233
Brian Osman11052242016-10-27 14:47:55 -0400234void WindowRectanglesMaskGM::visualizeStencilMask(GrContext* ctx, GrRenderTargetContext* rtc,
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700235 const GrReducedClip& reducedClip,
Brian Salomon82f44312017-01-11 13:42:54 -0500236 GrPaint&& paint) {
Brian Osman11052242016-10-27 14:47:55 -0400237 if (!ctx->resourceProvider()->attachStencilAttachment(rtc->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700238 return;
239 }
240
241 // Draw a checker pattern into the stencil buffer so we can visualize the regions left untouched
242 // by the clip mask generation.
Brian Osman11052242016-10-27 14:47:55 -0400243 this->stencilCheckerboard(rtc, false);
Brian Salomon9a767722017-03-13 17:57:28 -0400244 reducedClip.drawStencilClipMask(ctx, rtc);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700245
246 // Now visualize the stencil mask by covering the entire render target. The regions inside
247 // window rectangless or outside the scissor should still have the initial checkerboard intact.
248 // (This verifies we didn't spend any time modifying those pixels in the mask.)
Brian Salomon82f44312017-01-11 13:42:54 -0500249 rtc->drawPaint(StencilOnlyClip(), std::move(paint), SkMatrix::I());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700250}
251
Brian Osman11052242016-10-27 14:47:55 -0400252void WindowRectanglesMaskGM::stencilCheckerboard(GrRenderTargetContext* rtc, bool flip) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700253 constexpr static GrUserStencilSettings kSetClip(
254 GrUserStencilSettings::StaticInit<
255 0,
256 GrUserStencilTest::kAlways,
257 0,
258 GrUserStencilOp::kSetClipBit,
259 GrUserStencilOp::kKeep,
260 0>()
261 );
262
Brian Osman693a5402016-10-27 15:13:22 -0400263 rtc->priv().clearStencilClip(GrFixedClip::Disabled(), false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700264
Brian Salomon9a767722017-03-13 17:57:28 -0400265 for (int y = 0; y < kDeviceRect.height(); y += kMaskCheckerSize) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700266 for (int x = (y & 1) == flip ? 0 : kMaskCheckerSize;
Brian Salomon9a767722017-03-13 17:57:28 -0400267 x < kDeviceRect.width(); x += 2 * kMaskCheckerSize) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700268 SkIRect checker = SkIRect::MakeXYWH(x, y, kMaskCheckerSize, kMaskCheckerSize);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500269 rtc->priv().stencilRect(GrNoClip(), &kSetClip, GrAAType::kNone, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400270 SkRect::Make(checker));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700271 }
272 }
273}
274
275void WindowRectanglesMaskGM::fail(SkCanvas* canvas) {
276 SkPaint paint;
277 paint.setAntiAlias(true);
278 paint.setTextAlign(SkPaint::kCenter_Align);
279 paint.setTextSize(20);
280 sk_tool_utils::set_portable_typeface(&paint);
281
282 SkString errorMsg;
283 errorMsg.printf("Requires GPU with %i window rectangles", kNumWindows);
284
285 canvas->clipRect(SkRect::Make(kCoverRect));
286 canvas->clear(SK_ColorWHITE);
287 canvas->drawText(errorMsg.c_str(), errorMsg.size(), SkIntToScalar(kCoverRect.centerX()),
288 SkIntToScalar(kCoverRect.centerY() - 10), paint);
289}
290
291DEF_GM( return new WindowRectanglesMaskGM(); )
292
293#endif
294
295}