blob: f656b23aa0863dca6dcbb40f33aa84b960c0ef13 [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"
csmartdaltonbf4a8f92016-09-06 10:01:06 -070015# include "GrFixedClip.h"
16# include "GrReducedClip.h"
Robert Phillipsfbcef6e2017-06-15 12:07:18 -040017# include "GrRenderTargetContext.h"
18# include "GrRenderTargetContextPriv.h"
csmartdaltonbf4a8f92016-09-06 10:01:06 -070019# 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:
Brian Salomonaff329b2017-08-11 09:40:37 -0400152 AlphaOnlyClip(sk_sp<GrTextureProxy> mask, int x, int y) : fMask(mask), fX(x), fY(y) {}
153
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700154private:
Brian Salomon97180af2017-03-14 13:42:58 -0400155 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out,
156 SkRect* bounds) const override {
Brian Salomonaff329b2017-08-11 09:40:37 -0400157 int w = fMask->width();
158 int h = fMask->height();
159 out->addCoverageFP(GrDeviceSpaceTextureDecalFragmentProcessor::Make(
160 fMask, SkIRect::MakeWH(w, h), {fX, fY}));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700161 return true;
162 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400163 sk_sp<GrTextureProxy> fMask;
164 int fX;
165 int fY;
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700166};
167
168/**
169 * This class clips a cover by the stencil clip bit. We use it to visualize the stencil mask.
170 */
171class StencilOnlyClip final : public MaskOnlyClipBase {
172private:
Brian Salomon97180af2017-03-14 13:42:58 -0400173 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip* out,
174 SkRect* bounds) const override {
Robert Phillipsa4f792d2017-06-28 08:40:11 -0400175 out->addStencilClip(SkClipStack::kEmptyGenID);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700176 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 Salomon7c8460e2017-05-12 11:36:10 -0400192 if (GrFSAAType::kNone == rtc->fsaaType()) {
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 Salomon9a767722017-03-13 17:57:28 -0400203 const int padRight = (kDeviceRect.right() - kCoverRect.right()) / 2;
204 const int padBottom = (kDeviceRect.bottom() - kCoverRect.bottom()) / 2;
Brian Osman693a5402016-10-27 15:13:22 -0400205 sk_sp<GrRenderTargetContext> maskRTC(
Robert Phillipsdd3b3f42017-04-24 10:57:28 -0400206 ctx->makeDeferredRenderTargetContextWithFallback(SkBackingFit::kExact,
207 kCoverRect.width() + padRight,
208 kCoverRect.height() + padBottom,
209 kAlpha_8_GrPixelConfig, nullptr));
Brian Osman693a5402016-10-27 15:13:22 -0400210 if (!maskRTC ||
211 !ctx->resourceProvider()->attachStencilAttachment(maskRTC->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700212 return;
213 }
214
215 // Draw a checker pattern into the alpha mask so we can visualize the regions left untouched by
216 // the clip mask generation.
Brian Osman693a5402016-10-27 15:13:22 -0400217 this->stencilCheckerboard(maskRTC.get(), true);
218 maskRTC->clear(nullptr, GrColorPackA4(0xff), true);
219 maskRTC->priv().drawAndStencilRect(StencilOnlyClip(), &GrUserStencilSettings::kUnused,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500220 SkRegion::kDifference_Op, false, GrAA::kNo, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400221 SkRect::MakeIWH(maskRTC->width(), maskRTC->height()));
222 reducedClip.drawAlphaClipMask(maskRTC.get());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700223
Brian Salomon9a767722017-03-13 17:57:28 -0400224 int x = kCoverRect.x() - kDeviceRect.x(),
225 y = kCoverRect.y() - kDeviceRect.y();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700226
227 // Now visualize the alpha mask by drawing a rect over the area where it is defined. The regions
228 // inside window rectangles or outside the scissor should still have the initial checkerboard
229 // intact. (This verifies we didn't spend any time modifying those pixels in the mask.)
Robert Phillipsfbcef6e2017-06-15 12:07:18 -0400230 AlphaOnlyClip clip(maskRTC->asTextureProxyRef(), x, y);
Brian Salomon82f44312017-01-11 13:42:54 -0500231 rtc->drawRect(clip, std::move(paint), GrAA::kYes, SkMatrix::I(),
Robert Phillips40fd7c92017-01-30 08:06:27 -0500232 SkRect::Make(SkIRect::MakeXYWH(x, y, maskRTC->width(), maskRTC->height())));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700233}
234
Brian Osman11052242016-10-27 14:47:55 -0400235void WindowRectanglesMaskGM::visualizeStencilMask(GrContext* ctx, GrRenderTargetContext* rtc,
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700236 const GrReducedClip& reducedClip,
Brian Salomon82f44312017-01-11 13:42:54 -0500237 GrPaint&& paint) {
Brian Osman11052242016-10-27 14:47:55 -0400238 if (!ctx->resourceProvider()->attachStencilAttachment(rtc->accessRenderTarget())) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700239 return;
240 }
241
242 // Draw a checker pattern into the stencil buffer so we can visualize the regions left untouched
243 // by the clip mask generation.
Brian Osman11052242016-10-27 14:47:55 -0400244 this->stencilCheckerboard(rtc, false);
Brian Salomon9a767722017-03-13 17:57:28 -0400245 reducedClip.drawStencilClipMask(ctx, rtc);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700246
247 // Now visualize the stencil mask by covering the entire render target. The regions inside
Robert Phillips806be2d2017-06-28 15:23:59 -0400248 // window rectangles or outside the scissor should still have the initial checkerboard intact.
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700249 // (This verifies we didn't spend any time modifying those pixels in the mask.)
Brian Salomon82f44312017-01-11 13:42:54 -0500250 rtc->drawPaint(StencilOnlyClip(), std::move(paint), SkMatrix::I());
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700251}
252
Brian Osman11052242016-10-27 14:47:55 -0400253void WindowRectanglesMaskGM::stencilCheckerboard(GrRenderTargetContext* rtc, bool flip) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700254 constexpr static GrUserStencilSettings kSetClip(
255 GrUserStencilSettings::StaticInit<
256 0,
257 GrUserStencilTest::kAlways,
258 0,
259 GrUserStencilOp::kSetClipBit,
260 GrUserStencilOp::kKeep,
261 0>()
262 );
263
Brian Osman693a5402016-10-27 15:13:22 -0400264 rtc->priv().clearStencilClip(GrFixedClip::Disabled(), false);
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700265
Brian Salomon9a767722017-03-13 17:57:28 -0400266 for (int y = 0; y < kDeviceRect.height(); y += kMaskCheckerSize) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700267 for (int x = (y & 1) == flip ? 0 : kMaskCheckerSize;
Brian Salomon9a767722017-03-13 17:57:28 -0400268 x < kDeviceRect.width(); x += 2 * kMaskCheckerSize) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700269 SkIRect checker = SkIRect::MakeXYWH(x, y, kMaskCheckerSize, kMaskCheckerSize);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500270 rtc->priv().stencilRect(GrNoClip(), &kSetClip, GrAAType::kNone, SkMatrix::I(),
Brian Osman693a5402016-10-27 15:13:22 -0400271 SkRect::Make(checker));
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700272 }
273 }
274}
275
276void WindowRectanglesMaskGM::fail(SkCanvas* canvas) {
277 SkPaint paint;
278 paint.setAntiAlias(true);
279 paint.setTextAlign(SkPaint::kCenter_Align);
280 paint.setTextSize(20);
281 sk_tool_utils::set_portable_typeface(&paint);
282
283 SkString errorMsg;
284 errorMsg.printf("Requires GPU with %i window rectangles", kNumWindows);
285
286 canvas->clipRect(SkRect::Make(kCoverRect));
287 canvas->clear(SK_ColorWHITE);
Cary Clark2a475ea2017-04-28 15:35:12 -0400288 canvas->drawString(errorMsg, SkIntToScalar(kCoverRect.centerX()),
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700289 SkIntToScalar(kCoverRect.centerY() - 10), paint);
290}
291
292DEF_GM( return new WindowRectanglesMaskGM(); )
293
294#endif
295
296}