blob: d6b52918ef474906b3a46e8cfaefe8df8595c9e1 [file] [log] [blame]
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +00001/*
2 * Copyright 2012 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"
bsalomon@google.com707bd602014-03-04 16:52:20 +000010#if SK_SUPPORT_GPU
Brian Salomonc7fe0f72018-05-11 10:14:21 -040011#include "GrCaps.h"
joshualitt04194f32016-01-13 10:08:27 -080012#include "GrContext.h"
Brian Osman11052242016-10-27 14:47:55 -040013#include "GrRenderTargetContextPriv.h"
bsalomon@google.com707bd602014-03-04 16:52:20 +000014#include "effects/GrRRectEffect.h"
Brian Salomon89527432016-12-16 09:52:16 -050015#include "ops/GrDrawOp.h"
Brian Salomonbaaf4392017-06-15 09:59:23 -040016#include "ops/GrRectOpFactory.h"
bsalomon@google.com707bd602014-03-04 16:52:20 +000017#endif
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000018#include "SkRRect.h"
19
20namespace skiagm {
21
22///////////////////////////////////////////////////////////////////////////////
23
24class RRectGM : public GM {
25public:
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000026 enum Type {
27 kBW_Draw_Type,
28 kAA_Draw_Type,
29 kBW_Clip_Type,
30 kAA_Clip_Type,
31 kEffect_Type,
32 };
herbb10fe492016-01-08 13:48:43 -080033 RRectGM(Type type) : fType(type) { }
34
35protected:
36
37 void onOnceBeforeDraw() override {
caryclark65cdba62015-06-15 06:51:08 -070038 this->setBGColor(sk_tool_utils::color_to_565(0xFFDDDDDD));
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000039 this->setUpRRects();
40 }
41
mtklein36352bf2015-03-25 18:17:31 -070042 SkString onShortName() override {
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000043 SkString name("rrect");
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000044 switch (fType) {
45 case kBW_Draw_Type:
46 name.append("_draw_bw");
47 break;
48 case kAA_Draw_Type:
49 name.append("_draw_aa");
50 break;
51 case kBW_Clip_Type:
52 name.append("_clip_bw");
53 break;
54 case kAA_Clip_Type:
55 name.append("_clip_aa");
56 break;
57 case kEffect_Type:
58 name.append("_effect");
59 break;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000060 }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000061 return name;
62 }
63
mtklein36352bf2015-03-25 18:17:31 -070064 SkISize onISize() override { return SkISize::Make(kImageWidth, kImageHeight); }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000065
mtklein36352bf2015-03-25 18:17:31 -070066 void onDraw(SkCanvas* canvas) override {
Brian Osman11052242016-10-27 14:47:55 -040067 GrRenderTargetContext* renderTargetContext =
68 canvas->internal_private_accessTopLayerRenderTargetContext();
69 if (kEffect_Type == fType && !renderTargetContext) {
halcanary2a243382015-09-09 08:16:41 -070070 skiagm::GM::DrawGpuOnlyMessage(canvas);
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000071 return;
72 }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000073
74 SkPaint paint;
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000075 if (kAA_Draw_Type == fType) {
76 paint.setAntiAlias(true);
77 }
skia.committer@gmail.comf1f66c02014-03-05 03:02:06 +000078
mtkleindbfd7ab2016-09-01 11:24:54 -070079 const SkRect kMaxTileBound = SkRect::MakeWH(SkIntToScalar(kTileX),
80 SkIntToScalar(kTileY));
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +000081#ifdef SK_DEBUG
mtkleindbfd7ab2016-09-01 11:24:54 -070082 const SkRect kMaxImageBound = SkRect::MakeWH(SkIntToScalar(kImageWidth),
83 SkIntToScalar(kImageHeight));
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +000084#endif
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000085
bsalomon@google.comb0ba39d2014-03-10 19:51:46 +000086#if SK_SUPPORT_GPU
Ethan Nicholas1706f842017-11-10 11:58:19 -050087 int lastEdgeType = (kEffect_Type == fType) ? (int) GrClipEdgeType::kLast: 0;
bsalomon@google.comb0ba39d2014-03-10 19:51:46 +000088#else
89 int lastEdgeType = 0;
90#endif
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000091
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +000092 int y = 1;
bsalomon@google.comb0ba39d2014-03-10 19:51:46 +000093 for (int et = 0; et <= lastEdgeType; ++et) {
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +000094 int x = 1;
95 for (int curRRect = 0; curRRect < kNumRRects; ++curRRect) {
96 bool drew = true;
97#ifdef SK_DEBUG
98 SkASSERT(kMaxTileBound.contains(fRRects[curRRect].getBounds()));
99 SkRect imageSpaceBounds = fRRects[curRRect].getBounds();
100 imageSpaceBounds.offset(SkIntToScalar(x), SkIntToScalar(y));
101 SkASSERT(kMaxImageBound.contains(imageSpaceBounds));
102#endif
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000103 canvas->save();
104 canvas->translate(SkIntToScalar(x), SkIntToScalar(y));
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000105 if (kEffect_Type == fType) {
bsalomon@google.com707bd602014-03-04 16:52:20 +0000106#if SK_SUPPORT_GPU
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000107 SkRRect rrect = fRRects[curRRect];
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000108 rrect.offset(SkIntToScalar(x), SkIntToScalar(y));
Ethan Nicholas0f3c7322017-11-09 14:51:17 -0500109 GrClipEdgeType edgeType = (GrClipEdgeType) et;
Brian Salomon14471772017-12-05 10:35:15 -0500110 const auto& caps = *renderTargetContext->caps()->shaderCaps();
111 auto fp = GrRRectEffect::Make(edgeType, rrect, caps);
joshualittb0a8a372014-09-23 09:50:21 -0700112 if (fp) {
Brian Salomon82f44312017-01-11 13:42:54 -0500113 GrPaint grPaint;
114 grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
robertphillips28a838e2016-06-23 14:07:00 -0700115 grPaint.addCoverageFragmentProcessor(std::move(fp));
Brian Salomonac70f842017-05-08 10:43:33 -0400116 grPaint.setColor4f(GrColor4f(0, 0, 0, 1.f));
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000117
118 SkRect bounds = rrect.getBounds();
119 bounds.outset(2.f, 2.f);
skia.committer@gmail.comf1f66c02014-03-05 03:02:06 +0000120
Brian Salomonac70f842017-05-08 10:43:33 -0400121 renderTargetContext->priv().testingOnly_addDrawOp(
Brian Salomonbaaf4392017-06-15 09:59:23 -0400122 GrRectOpFactory::MakeNonAAFill(std::move(grPaint),
123 SkMatrix::I(), bounds,
124 GrAAType::kNone));
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000125 } else {
126 drew = false;
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000127 }
bsalomon@google.com707bd602014-03-04 16:52:20 +0000128#endif
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000129 } else if (kBW_Clip_Type == fType || kAA_Clip_Type == fType) {
130 bool aaClip = (kAA_Clip_Type == fType);
reed66998382016-09-21 11:15:07 -0700131 canvas->clipRRect(fRRects[curRRect], aaClip);
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000132 canvas->drawRect(kMaxTileBound, paint);
133 } else {
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000134 canvas->drawRRect(fRRects[curRRect], paint);
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000135 }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000136 canvas->restore();
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000137 if (drew) {
138 x = x + kTileX;
139 if (x > kImageWidth) {
140 x = 1;
141 y += kTileY;
142 }
143 }
144 }
145 if (x != 1) {
146 y += kTileY;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000147 }
148 }
149 }
150
151 void setUpRRects() {
skia.committer@gmail.com7a03d862012-12-18 02:03:03 +0000152 // each RRect must fit in a 0x0 -> (kTileX-2)x(kTileY-2) block. These will be tiled across
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000153 // the screen in kTileX x kTileY tiles. The extra empty pixels on each side are for AA.
154
155 // simple cases
156 fRRects[0].setRect(SkRect::MakeWH(kTileX-2, kTileY-2));
157 fRRects[1].setOval(SkRect::MakeWH(kTileX-2, kTileY-2));
158 fRRects[2].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 10, 10);
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000159 fRRects[3].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 10, 5);
160 // small circular corners are an interesting test case for gpu clipping
161 fRRects[4].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 1, 1);
162 fRRects[5].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 0.5f, 0.5f);
163 fRRects[6].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 0.2f, 0.2f);
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000164
165 // The first complex case needs special handling since it is a square
166 fRRects[kNumSimpleCases].setRectRadii(SkRect::MakeWH(kTileY-2, kTileY-2), gRadii[0]);
mike@reedtribe.orgf6100c82012-12-24 13:56:17 +0000167 for (size_t i = 1; i < SK_ARRAY_COUNT(gRadii); ++i) {
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000168 fRRects[kNumSimpleCases+i].setRectRadii(SkRect::MakeWH(kTileX-2, kTileY-2), gRadii[i]);
169 }
170 }
171
172private:
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000173 Type fType;
skia.committer@gmail.comf1f66c02014-03-05 03:02:06 +0000174
mtkleindbfd7ab2016-09-01 11:24:54 -0700175 static constexpr int kImageWidth = 640;
176 static constexpr int kImageHeight = 480;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000177
mtkleindbfd7ab2016-09-01 11:24:54 -0700178 static constexpr int kTileX = 80;
179 static constexpr int kTileY = 40;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000180
mtkleindbfd7ab2016-09-01 11:24:54 -0700181 static constexpr int kNumSimpleCases = 7;
182 static constexpr int kNumComplexCases = 35;
robertphillips@google.com5683d422012-12-17 21:58:02 +0000183 static const SkVector gRadii[kNumComplexCases][4];
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000184
mtkleindbfd7ab2016-09-01 11:24:54 -0700185 static constexpr int kNumRRects = kNumSimpleCases + kNumComplexCases;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000186 SkRRect fRRects[kNumRRects];
187
188 typedef GM INHERITED;
189};
190
191// Radii for the various test cases. Order is UL, UR, LR, LL
192const SkVector RRectGM::gRadii[kNumComplexCases][4] = {
193 // a circle
194 { { kTileY, kTileY }, { kTileY, kTileY }, { kTileY, kTileY }, { kTileY, kTileY } },
195
196 // odd ball cases
197 { { 8, 8 }, { 32, 32 }, { 8, 8 }, { 32, 32 } },
198 { { 16, 8 }, { 8, 16 }, { 16, 8 }, { 8, 16 } },
199 { { 0, 0 }, { 16, 16 }, { 8, 8 }, { 32, 32 } },
200
201 // UL
202 { { 30, 30 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
203 { { 30, 15 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
204 { { 15, 30 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
205
206 // UR
207 { { 0, 0 }, { 30, 30 }, { 0, 0 }, { 0, 0 } },
208 { { 0, 0 }, { 30, 15 }, { 0, 0 }, { 0, 0 } },
209 { { 0, 0 }, { 15, 30 }, { 0, 0 }, { 0, 0 } },
210
211 // LR
212 { { 0, 0 }, { 0, 0 }, { 30, 30 }, { 0, 0 } },
213 { { 0, 0 }, { 0, 0 }, { 30, 15 }, { 0, 0 } },
214 { { 0, 0 }, { 0, 0 }, { 15, 30 }, { 0, 0 } },
215
216 // LL
217 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 30, 30 } },
218 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 30, 15 } },
219 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 15, 30 } },
220
221 // over-sized radii
222 { { 0, 0 }, { 100, 400 }, { 0, 0 }, { 0, 0 } },
223 { { 0, 0 }, { 400, 400 }, { 0, 0 }, { 0, 0 } },
224 { { 400, 400 }, { 400, 400 }, { 400, 400 }, { 400, 400 } },
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000225
226 // circular corner tabs
227 { { 0, 0 }, { 20, 20 }, { 20, 20 }, { 0, 0 } },
228 { { 20, 20 }, { 20, 20 }, { 0, 0 }, { 0, 0 } },
229 { { 0, 0 }, { 0, 0 }, { 20, 20 }, { 20, 20 } },
230 { { 20, 20 }, { 0, 0 }, { 0, 0 }, { 20, 20 } },
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000231
commit-bot@chromium.org04eff722014-03-24 14:53:09 +0000232 // small radius circular corner tabs
233 { { 0, 0 }, { 0.2f, 0.2f }, { 0.2f, 0.2f }, { 0, 0 } },
234 { { 0.3f, 0.3f }, { 0.3f, .3f }, { 0, 0 }, { 0, 0 } },
235
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000236 // single circular corner cases
237 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 15, 15 } },
238 { { 0, 0 }, { 0, 0 }, { 15, 15 }, { 0, 0 } },
239 { { 0, 0 }, { 15, 15 }, { 0, 0 }, { 0, 0 } },
240 { { 15, 15 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000241
242 // nine patch elliptical
243 { { 5, 7 }, { 8, 7 }, { 8, 12 }, { 5, 12 } },
244 { { 0, 7 }, { 8, 7 }, { 8, 12 }, { 0, 12 } },
commit-bot@chromium.org04eff722014-03-24 14:53:09 +0000245
246 // nine patch elliptical, small radii
247 { { 0.4f, 7 }, { 8, 7 }, { 8, 12 }, { 0.4f, 12 } },
248 { { 0.4f, 0.4f }, { 8, 0.4f }, { 8, 12 }, { 0.4f, 12 } },
249 { { 20, 0.4f }, { 18, 0.4f }, { 18, 0.4f }, { 20, 0.4f } },
250 { { 0.3f, 0.4f }, { 0.3f, 0.4f }, { 0.3f, 0.4f }, { 0.3f, 0.4f } },
251
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000252};
253
254///////////////////////////////////////////////////////////////////////////////
255
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000256DEF_GM( return new RRectGM(RRectGM::kAA_Draw_Type); )
257DEF_GM( return new RRectGM(RRectGM::kBW_Draw_Type); )
258DEF_GM( return new RRectGM(RRectGM::kAA_Clip_Type); )
259DEF_GM( return new RRectGM(RRectGM::kBW_Clip_Type); )
bsalomon@google.com707bd602014-03-04 16:52:20 +0000260#if SK_SUPPORT_GPU
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000261DEF_GM( return new RRectGM(RRectGM::kEffect_Type); )
bsalomon@google.com707bd602014-03-04 16:52:20 +0000262#endif
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000263
264}