blob: 202836f18a5a4fb804ec8bc33c9866c3a17d0ed4 [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};
csmartdaltonbf4a8f92016-09-06 10:01:06 -070024constexpr static SkIRect kCoverRect = {50, 50, 550, 550};
csmartdaltonbf4a8f92016-09-06 10:01:06 -070025
26namespace skiagm {
27
28////////////////////////////////////////////////////////////////////////////////////////////////////
29
30class WindowRectanglesBaseGM : public GM {
31protected:
32 virtual void onCoverClipStack(const SkClipStack&, SkCanvas*) = 0;
33
34private:
35 SkISize onISize() override { return SkISize::Make(kDeviceRect.width(), kDeviceRect.height()); }
36 void onDraw(SkCanvas*) final;
37};
38
39void WindowRectanglesBaseGM::onDraw(SkCanvas* canvas) {
40 sk_tool_utils::draw_checkerboard(canvas, 0xffffffff, 0xffc6c3c6, 25);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070041
42 SkClipStack stack;
Brian Salomona3b45d42016-10-03 11:36:16 -040043 stack.clipRect(SkRect::MakeXYWH(370.75, 80.25, 149, 100), SkMatrix::I(),
Mike Reedc1f77742016-12-09 09:00:50 -050044 kDifference_SkClipOp, false);
Brian Salomona3b45d42016-10-03 11:36:16 -040045 stack.clipRect(SkRect::MakeXYWH(80.25, 420.75, 150, 100), SkMatrix::I(),
Mike Reedc1f77742016-12-09 09:00:50 -050046 kDifference_SkClipOp, true);
Brian Salomona3b45d42016-10-03 11:36:16 -040047 stack.clipRRect(SkRRect::MakeRectXY(SkRect::MakeXYWH(200, 200, 200, 200), 60, 45),
Mike Reedc1f77742016-12-09 09:00:50 -050048 SkMatrix::I(), kDifference_SkClipOp, true);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070049
50 SkRRect nine;
51 nine.setNinePatch(SkRect::MakeXYWH(550 - 30.25 - 100, 370.75, 100, 150), 12, 35, 23, 20);
Mike Reedc1f77742016-12-09 09:00:50 -050052 stack.clipRRect(nine, SkMatrix::I(), kDifference_SkClipOp, true);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070053
54 SkRRect complx;
55 SkVector complxRadii[4] = {{6, 4}, {8, 12}, {16, 24}, {48, 32}};
56 complx.setRectRadii(SkRect::MakeXYWH(80.25, 80.75, 100, 149), complxRadii);
Mike Reedc1f77742016-12-09 09:00:50 -050057 stack.clipRRect(complx, SkMatrix::I(), kDifference_SkClipOp, false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070058
59 this->onCoverClipStack(stack, canvas);
csmartdaltonbf4a8f92016-09-06 10:01:06 -070060}
61
62////////////////////////////////////////////////////////////////////////////////////////////////////
63
64/**
65 * Draws a clip that will exercise window rectangles if they are supported.
66 */
67class WindowRectanglesGM : public WindowRectanglesBaseGM {
68private:
69 SkString onShortName() final { return SkString("windowrectangles"); }
70 void onCoverClipStack(const SkClipStack&, SkCanvas*) final;
71};
72
csmartdaltonbf4a8f92016-09-06 10:01:06 -070073void WindowRectanglesGM::onCoverClipStack(const SkClipStack& stack, SkCanvas* canvas) {
74 SkPaint paint;
75 paint.setColor(0xff00aa80);
76
77 // Set up the canvas's clip to match our SkClipStack.
csmartdaltonbf4a8f92016-09-06 10:01:06 -070078 SkClipStack::Iter iter(stack, SkClipStack::Iter::kBottom_IterStart);
79 for (const SkClipStack::Element* element = iter.next(); element; element = iter.next()) {
Mike Reed598524d2017-03-08 13:13:44 -050080 SkClipOp op = element->getOp();
81 bool isAA = element->isAA();
82 switch (element->getType()) {
83 case SkClipStack::Element::kPath_Type:
84 canvas->clipPath(element->getPath(), op, isAA);
85 break;
86 case SkClipStack::Element::kRRect_Type:
87 canvas->clipRRect(element->getRRect(), op, isAA);
88 break;
89 case SkClipStack::Element::kRect_Type:
90 canvas->clipRect(element->getRect(), op, isAA);
91 break;
92 case SkClipStack::Element::kEmpty_Type:
93 canvas->clipRect({ 0, 0, 0, 0 }, kIntersect_SkClipOp, false);
94 break;
95 }
csmartdaltonbf4a8f92016-09-06 10:01:06 -070096 }
97
98 canvas->drawRect(SkRect::Make(kCoverRect), paint);
99}
100
101DEF_GM( return new WindowRectanglesGM(); )
102
103////////////////////////////////////////////////////////////////////////////////////////////////////
104
105#if SK_SUPPORT_GPU
106
mtklein0a441072016-09-06 11:45:31 -0700107constexpr static int kNumWindows = 8;
108
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700109/**
110 * Visualizes the mask (alpha or stencil) for a clip with several window rectangles. The purpose of
111 * this test is to verify that window rectangles are being used during clip mask generation, and to
112 * visualize where the window rectangles are placed.
113 *
114 * We use window rectangles when generating the clip mask because there is no need to invest time
115 * defining those regions where window rectangles will be in effect during the actual draw anyway.
116 *
117 * This test works by filling the entire clip mask with a small checkerboard pattern before drawing
118 * it, and then covering the mask with a solid color once it has been generated. The regions inside
119 * window rectangles or outside the scissor should still have the initial checkerboard intact.
120 */
121class WindowRectanglesMaskGM : public WindowRectanglesBaseGM {
122private:
123 constexpr static int kMaskCheckerSize = 5;
124 SkString onShortName() final { return SkString("windowrectangles_mask"); }
125 void onCoverClipStack(const SkClipStack&, SkCanvas*) final;
Brian Salomon82f44312017-01-11 13:42:54 -0500126 void visualizeAlphaMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&, GrPaint&&);
127 void visualizeStencilMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&, GrPaint&&);
Brian Osman11052242016-10-27 14:47:55 -0400128 void stencilCheckerboard(GrRenderTargetContext*, bool flip);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700129 void fail(SkCanvas*);
130};
131
132/**
133 * Base class for GrClips that visualize a clip mask.
134 */
135class MaskOnlyClipBase : public GrClip {
136private:
137 bool quickContains(const SkRect&) const final { return false; }
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500138 bool isRRect(const SkRect& rtBounds, SkRRect* rr, GrAA*) const final { return false; }
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700139 void getConservativeBounds(int width, int height, SkIRect* rect, bool* iior) const final {
140 rect->set(0, 0, width, height);
141 if (iior) {
142 *iior = false;
143 }
144 }
145};
146
147/**
148 * This class clips a cover by an alpha mask. We use it to visualize the alpha clip mask.
149 */
150class AlphaOnlyClip final : public MaskOnlyClipBase {
151public:
Robert Phillips40fd7c92017-01-30 08:06:27 -0500152 AlphaOnlyClip(GrContext* context, sk_sp<GrTextureProxy> mask, int x, int y) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700153 int w = mask->width(), h = mask->height();
Robert Phillips40fd7c92017-01-30 08:06:27 -0500154 fFP = GrDeviceSpaceTextureDecalFragmentProcessor::Make(context, std::move(mask),
155 SkIRect::MakeWH(w, h), {x, y});
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700156 }
157private:
Brian Salomon97180af2017-03-14 13:42:58 -0400158 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out,
159 SkRect* bounds) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700160 out->addCoverageFP(fFP);
161 return true;
162 }
163 sk_sp<GrFragmentProcessor> fFP;
164};
165
166/**
167 * This class clips a cover by the stencil clip bit. We use it to visualize the stencil mask.
168 */
169class StencilOnlyClip final : public MaskOnlyClipBase {
170private:
Brian Salomon97180af2017-03-14 13:42:58 -0400171 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out,
172 SkRect* bounds) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700173 out->addStencilClip();
174 return true;
175 }
176};
177
178void WindowRectanglesMaskGM::onCoverClipStack(const SkClipStack& stack, SkCanvas* canvas) {
179 GrContext* ctx = canvas->getGrContext();
Brian Osman11052242016-10-27 14:47:55 -0400180 GrRenderTargetContext* rtc = canvas->internal_private_accessTopLayerRenderTargetContext();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700181
Robert Phillipsec2249f2016-11-09 08:54:35 -0500182 if (!ctx || !rtc || rtc->priv().maxWindowRectangles() < kNumWindows) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700183 this->fail(canvas);
184 return;
185 }
186
187 const GrReducedClip reducedClip(stack, SkRect::Make(kCoverRect), kNumWindows);
188
189 GrPaint paint;
Brian Osman11052242016-10-27 14:47:55 -0400190 if (!rtc->isStencilBufferMultisampled()) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700191 paint.setColor4f(GrColor4f(0, 0.25f, 1, 1));
Brian Salomon82f44312017-01-11 13:42:54 -0500192 this->visualizeAlphaMask(ctx, rtc, reducedClip, std::move(paint));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700193 } else {
194 paint.setColor4f(GrColor4f(1, 0.25f, 0.25f, 1));
Brian Salomon82f44312017-01-11 13:42:54 -0500195 this->visualizeStencilMask(ctx, rtc, reducedClip, std::move(paint));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700196 }
197}
198
Brian Osman11052242016-10-27 14:47:55 -0400199void WindowRectanglesMaskGM::visualizeAlphaMask(GrContext* ctx, GrRenderTargetContext* rtc,
Brian Salomon82f44312017-01-11 13:42:54 -0500200 const GrReducedClip& reducedClip, GrPaint&& paint) {
Brian Salomon9a767722017-03-13 17:57:28 -0400201 const int padRight = (kDeviceRect.right() - kCoverRect.right()) / 2;
202 const int padBottom = (kDeviceRect.bottom() - kCoverRect.bottom()) / 2;
Brian Osman693a5402016-10-27 15:13:22 -0400203 sk_sp<GrRenderTargetContext> maskRTC(
Brian Salomon9a767722017-03-13 17:57:28 -0400204 ctx->makeRenderTargetContextWithFallback(SkBackingFit::kExact,
205 kCoverRect.width() + padRight,
206 kCoverRect.height() + padBottom,
207 kAlpha_8_GrPixelConfig, nullptr));
Brian Osman693a5402016-10-27 15:13:22 -0400208 if (!maskRTC ||
209 !ctx->resourceProvider()->attachStencilAttachment(maskRTC->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700210 return;
211 }
212
213 // Draw a checker pattern into the alpha mask so we can visualize the regions left untouched by
214 // the clip mask generation.
Brian Osman693a5402016-10-27 15:13:22 -0400215 this->stencilCheckerboard(maskRTC.get(), true);
216 maskRTC->clear(nullptr, GrColorPackA4(0xff), true);
217 maskRTC->priv().drawAndStencilRect(StencilOnlyClip(), &GrUserStencilSettings::kUnused,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500218 SkRegion::kDifference_Op, false, GrAA::kNo, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400219 SkRect::MakeIWH(maskRTC->width(), maskRTC->height()));
220 reducedClip.drawAlphaClipMask(maskRTC.get());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700221
Brian Salomon9a767722017-03-13 17:57:28 -0400222 int x = kCoverRect.x() - kDeviceRect.x(),
223 y = kCoverRect.y() - kDeviceRect.y();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700224
225 // Now visualize the alpha mask by drawing a rect over the area where it is defined. The regions
226 // inside window rectangles or outside the scissor should still have the initial checkerboard
227 // intact. (This verifies we didn't spend any time modifying those pixels in the mask.)
Robert Phillipsf200a902017-01-30 13:27:37 -0500228 AlphaOnlyClip clip(ctx, maskRTC->asTextureProxyRef(), x, y);
Brian Salomon82f44312017-01-11 13:42:54 -0500229 rtc->drawRect(clip, std::move(paint), GrAA::kYes, SkMatrix::I(),
Robert Phillips40fd7c92017-01-30 08:06:27 -0500230 SkRect::Make(SkIRect::MakeXYWH(x, y, maskRTC->width(), maskRTC->height())));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700231}
232
Brian Osman11052242016-10-27 14:47:55 -0400233void WindowRectanglesMaskGM::visualizeStencilMask(GrContext* ctx, GrRenderTargetContext* rtc,
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700234 const GrReducedClip& reducedClip,
Brian Salomon82f44312017-01-11 13:42:54 -0500235 GrPaint&& paint) {
Brian Osman11052242016-10-27 14:47:55 -0400236 if (!ctx->resourceProvider()->attachStencilAttachment(rtc->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700237 return;
238 }
239
240 // Draw a checker pattern into the stencil buffer so we can visualize the regions left untouched
241 // by the clip mask generation.
Brian Osman11052242016-10-27 14:47:55 -0400242 this->stencilCheckerboard(rtc, false);
Brian Salomon9a767722017-03-13 17:57:28 -0400243 reducedClip.drawStencilClipMask(ctx, rtc);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700244
245 // Now visualize the stencil mask by covering the entire render target. The regions inside
246 // window rectangless or outside the scissor should still have the initial checkerboard intact.
247 // (This verifies we didn't spend any time modifying those pixels in the mask.)
Brian Salomon82f44312017-01-11 13:42:54 -0500248 rtc->drawPaint(StencilOnlyClip(), std::move(paint), SkMatrix::I());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700249}
250
Brian Osman11052242016-10-27 14:47:55 -0400251void WindowRectanglesMaskGM::stencilCheckerboard(GrRenderTargetContext* rtc, bool flip) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700252 constexpr static GrUserStencilSettings kSetClip(
253 GrUserStencilSettings::StaticInit<
254 0,
255 GrUserStencilTest::kAlways,
256 0,
257 GrUserStencilOp::kSetClipBit,
258 GrUserStencilOp::kKeep,
259 0>()
260 );
261
Brian Osman693a5402016-10-27 15:13:22 -0400262 rtc->priv().clearStencilClip(GrFixedClip::Disabled(), false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700263
Brian Salomon9a767722017-03-13 17:57:28 -0400264 for (int y = 0; y < kDeviceRect.height(); y += kMaskCheckerSize) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700265 for (int x = (y & 1) == flip ? 0 : kMaskCheckerSize;
Brian Salomon9a767722017-03-13 17:57:28 -0400266 x < kDeviceRect.width(); x += 2 * kMaskCheckerSize) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700267 SkIRect checker = SkIRect::MakeXYWH(x, y, kMaskCheckerSize, kMaskCheckerSize);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500268 rtc->priv().stencilRect(GrNoClip(), &kSetClip, GrAAType::kNone, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400269 SkRect::Make(checker));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700270 }
271 }
272}
273
274void WindowRectanglesMaskGM::fail(SkCanvas* canvas) {
275 SkPaint paint;
276 paint.setAntiAlias(true);
277 paint.setTextAlign(SkPaint::kCenter_Align);
278 paint.setTextSize(20);
279 sk_tool_utils::set_portable_typeface(&paint);
280
281 SkString errorMsg;
282 errorMsg.printf("Requires GPU with %i window rectangles", kNumWindows);
283
284 canvas->clipRect(SkRect::Make(kCoverRect));
285 canvas->clear(SK_ColorWHITE);
286 canvas->drawText(errorMsg.c_str(), errorMsg.size(), SkIntToScalar(kCoverRect.centerX()),
287 SkIntToScalar(kCoverRect.centerY() - 10), paint);
288}
289
290DEF_GM( return new WindowRectanglesMaskGM(); )
291
292#endif
293
294}