blob: d0ec023a6436be9ae785cbabe32bc1bb335c869c [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(),
Mike Reedc1f77742016-12-09 09:00:50 -050046 kDifference_SkClipOp, false);
Brian Salomona3b45d42016-10-03 11:36:16 -040047 stack.clipRect(SkRect::MakeXYWH(80.25, 420.75, 150, 100), SkMatrix::I(),
Mike Reedc1f77742016-12-09 09:00:50 -050048 kDifference_SkClipOp, true);
Brian Salomona3b45d42016-10-03 11:36:16 -040049 stack.clipRRect(SkRRect::MakeRectXY(SkRect::MakeXYWH(200, 200, 200, 200), 60, 45),
Mike Reedc1f77742016-12-09 09:00:50 -050050 SkMatrix::I(), kDifference_SkClipOp, 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);
Mike Reedc1f77742016-12-09 09:00:50 -050054 stack.clipRRect(nine, SkMatrix::I(), kDifference_SkClipOp, 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);
Mike Reedc1f77742016-12-09 09:00:50 -050059 stack.clipRRect(complx, SkMatrix::I(), kDifference_SkClipOp, 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/**
Hal Canary55325b72017-01-03 10:36:17 -050078 * This is a simple helper class for resetting a canvas's clip to our test's SkClipStack.
csmartdaltonbf4a8f92016-09-06 10:01:06 -070079 */
80class ReplayClipStackVisitor final : public SkCanvasClipVisitor {
81public:
Mike Reedc1f77742016-12-09 09:00:50 -050082 typedef SkClipOp 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 Salomon82f44312017-01-11 13:42:54 -0500130 void visualizeAlphaMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&, GrPaint&&);
131 void visualizeStencilMask(GrContext*, GrRenderTargetContext*, const GrReducedClip&, GrPaint&&);
Brian Osman11052242016-10-27 14:47:55 -0400132 void stencilCheckerboard(GrRenderTargetContext*, bool flip);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700133 void fail(SkCanvas*);
134};
135
136/**
137 * Base class for GrClips that visualize a clip mask.
138 */
139class MaskOnlyClipBase : public GrClip {
140private:
141 bool quickContains(const SkRect&) const final { return false; }
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500142 bool isRRect(const SkRect& rtBounds, SkRRect* rr, GrAA*) const final { return false; }
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700143 void getConservativeBounds(int width, int height, SkIRect* rect, bool* iior) const final {
144 rect->set(0, 0, width, height);
145 if (iior) {
146 *iior = false;
147 }
148 }
149};
150
151/**
152 * This class clips a cover by an alpha mask. We use it to visualize the alpha clip mask.
153 */
154class AlphaOnlyClip final : public MaskOnlyClipBase {
155public:
Robert Phillips40fd7c92017-01-30 08:06:27 -0500156 AlphaOnlyClip(GrContext* context, sk_sp<GrTextureProxy> mask, int x, int y) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700157 int w = mask->width(), h = mask->height();
Robert Phillips40fd7c92017-01-30 08:06:27 -0500158 fFP = GrDeviceSpaceTextureDecalFragmentProcessor::Make(context, std::move(mask),
159 SkIRect::MakeWH(w, h), {x, y});
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700160 }
161private:
Brian Osman11052242016-10-27 14:47:55 -0400162 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700163 out->addCoverageFP(fFP);
164 return true;
165 }
166 sk_sp<GrFragmentProcessor> fFP;
167};
168
169/**
170 * This class clips a cover by the stencil clip bit. We use it to visualize the stencil mask.
171 */
172class StencilOnlyClip final : public MaskOnlyClipBase {
173private:
Brian Osman11052242016-10-27 14:47:55 -0400174 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out) const override {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700175 out->addStencilClip();
176 return true;
177 }
178};
179
180void WindowRectanglesMaskGM::onCoverClipStack(const SkClipStack& stack, SkCanvas* canvas) {
181 GrContext* ctx = canvas->getGrContext();
Brian Osman11052242016-10-27 14:47:55 -0400182 GrRenderTargetContext* rtc = canvas->internal_private_accessTopLayerRenderTargetContext();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700183
Robert Phillipsec2249f2016-11-09 08:54:35 -0500184 if (!ctx || !rtc || rtc->priv().maxWindowRectangles() < kNumWindows) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700185 this->fail(canvas);
186 return;
187 }
188
189 const GrReducedClip reducedClip(stack, SkRect::Make(kCoverRect), kNumWindows);
190
191 GrPaint paint;
Brian Osman11052242016-10-27 14:47:55 -0400192 if (!rtc->isStencilBufferMultisampled()) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700193 paint.setColor4f(GrColor4f(0, 0.25f, 1, 1));
Brian Salomon82f44312017-01-11 13:42:54 -0500194 this->visualizeAlphaMask(ctx, rtc, reducedClip, std::move(paint));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700195 } else {
196 paint.setColor4f(GrColor4f(1, 0.25f, 0.25f, 1));
Brian Salomon82f44312017-01-11 13:42:54 -0500197 this->visualizeStencilMask(ctx, rtc, reducedClip, std::move(paint));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700198 }
199}
200
Brian Osman11052242016-10-27 14:47:55 -0400201void WindowRectanglesMaskGM::visualizeAlphaMask(GrContext* ctx, GrRenderTargetContext* rtc,
Brian Salomon82f44312017-01-11 13:42:54 -0500202 const GrReducedClip& reducedClip, GrPaint&& paint) {
Brian Osman693a5402016-10-27 15:13:22 -0400203 sk_sp<GrRenderTargetContext> maskRTC(
Brian Osman11052242016-10-27 14:47:55 -0400204 ctx->makeRenderTargetContextWithFallback(SkBackingFit::kExact, kLayerRect.width(),
205 kLayerRect.height(), kAlpha_8_GrPixelConfig,
206 nullptr));
Brian Osman693a5402016-10-27 15:13:22 -0400207 if (!maskRTC ||
208 !ctx->resourceProvider()->attachStencilAttachment(maskRTC->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700209 return;
210 }
211
212 // Draw a checker pattern into the alpha mask so we can visualize the regions left untouched by
213 // the clip mask generation.
Brian Osman693a5402016-10-27 15:13:22 -0400214 this->stencilCheckerboard(maskRTC.get(), true);
215 maskRTC->clear(nullptr, GrColorPackA4(0xff), true);
216 maskRTC->priv().drawAndStencilRect(StencilOnlyClip(), &GrUserStencilSettings::kUnused,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500217 SkRegion::kDifference_Op, false, GrAA::kNo, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400218 SkRect::MakeIWH(maskRTC->width(), maskRTC->height()));
219 reducedClip.drawAlphaClipMask(maskRTC.get());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700220
221 int x = kCoverRect.x() - kLayerRect.x(),
222 y = kCoverRect.y() - kLayerRect.y();
223
224 // Now visualize the alpha mask by drawing a rect over the area where it is defined. The regions
225 // inside window rectangles or outside the scissor should still have the initial checkerboard
226 // intact. (This verifies we didn't spend any time modifying those pixels in the mask.)
Robert Phillipsf200a902017-01-30 13:27:37 -0500227 AlphaOnlyClip clip(ctx, maskRTC->asTextureProxyRef(), x, y);
Brian Salomon82f44312017-01-11 13:42:54 -0500228 rtc->drawRect(clip, std::move(paint), GrAA::kYes, SkMatrix::I(),
Robert Phillips40fd7c92017-01-30 08:06:27 -0500229 SkRect::Make(SkIRect::MakeXYWH(x, y, maskRTC->width(), maskRTC->height())));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700230}
231
Brian Osman11052242016-10-27 14:47:55 -0400232void WindowRectanglesMaskGM::visualizeStencilMask(GrContext* ctx, GrRenderTargetContext* rtc,
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700233 const GrReducedClip& reducedClip,
Brian Salomon82f44312017-01-11 13:42:54 -0500234 GrPaint&& paint) {
Brian Osman11052242016-10-27 14:47:55 -0400235 if (!ctx->resourceProvider()->attachStencilAttachment(rtc->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700236 return;
237 }
238
239 // Draw a checker pattern into the stencil buffer so we can visualize the regions left untouched
240 // by the clip mask generation.
Brian Osman11052242016-10-27 14:47:55 -0400241 this->stencilCheckerboard(rtc, false);
242 reducedClip.drawStencilClipMask(ctx, rtc, {kLayerRect.x(), kLayerRect.y()});
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700243
244 // Now visualize the stencil mask by covering the entire render target. The regions inside
245 // window rectangless or outside the scissor should still have the initial checkerboard intact.
246 // (This verifies we didn't spend any time modifying those pixels in the mask.)
Brian Salomon82f44312017-01-11 13:42:54 -0500247 rtc->drawPaint(StencilOnlyClip(), std::move(paint), SkMatrix::I());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700248}
249
Brian Osman11052242016-10-27 14:47:55 -0400250void WindowRectanglesMaskGM::stencilCheckerboard(GrRenderTargetContext* rtc, bool flip) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700251 constexpr static GrUserStencilSettings kSetClip(
252 GrUserStencilSettings::StaticInit<
253 0,
254 GrUserStencilTest::kAlways,
255 0,
256 GrUserStencilOp::kSetClipBit,
257 GrUserStencilOp::kKeep,
258 0>()
259 );
260
Brian Osman693a5402016-10-27 15:13:22 -0400261 rtc->priv().clearStencilClip(GrFixedClip::Disabled(), false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700262
263 for (int y = 0; y < kLayerRect.height(); y += kMaskCheckerSize) {
264 for (int x = (y & 1) == flip ? 0 : kMaskCheckerSize;
265 x < kLayerRect.width(); x += 2 * kMaskCheckerSize) {
266 SkIRect checker = SkIRect::MakeXYWH(x, y, kMaskCheckerSize, kMaskCheckerSize);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500267 rtc->priv().stencilRect(GrNoClip(), &kSetClip, GrAAType::kNone, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400268 SkRect::Make(checker));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700269 }
270 }
271}
272
273void WindowRectanglesMaskGM::fail(SkCanvas* canvas) {
274 SkPaint paint;
275 paint.setAntiAlias(true);
276 paint.setTextAlign(SkPaint::kCenter_Align);
277 paint.setTextSize(20);
278 sk_tool_utils::set_portable_typeface(&paint);
279
280 SkString errorMsg;
281 errorMsg.printf("Requires GPU with %i window rectangles", kNumWindows);
282
283 canvas->clipRect(SkRect::Make(kCoverRect));
284 canvas->clear(SK_ColorWHITE);
285 canvas->drawText(errorMsg.c_str(), errorMsg.size(), SkIntToScalar(kCoverRect.centerX()),
286 SkIntToScalar(kCoverRect.centerY() - 10), paint);
287}
288
289DEF_GM( return new WindowRectanglesMaskGM(); )
290
291#endif
292
293}