blob: 143fde35e7c6ea8bd24636c0ea37a6836745c461 [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"
Brian Salomonc7fe0f72018-05-11 10:14:21 -040010#include "GrCaps.h"
joshualitt04194f32016-01-13 10:08:27 -080011#include "GrContext.h"
Brian Osman11052242016-10-27 14:47:55 -040012#include "GrRenderTargetContextPriv.h"
bsalomon@google.com707bd602014-03-04 16:52:20 +000013#include "effects/GrRRectEffect.h"
Brian Salomon89527432016-12-16 09:52:16 -050014#include "ops/GrDrawOp.h"
Brian Salomonbaaf4392017-06-15 09:59:23 -040015#include "ops/GrRectOpFactory.h"
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000016#include "SkRRect.h"
17
18namespace skiagm {
19
20///////////////////////////////////////////////////////////////////////////////
21
22class RRectGM : public GM {
23public:
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000024 enum Type {
25 kBW_Draw_Type,
26 kAA_Draw_Type,
27 kBW_Clip_Type,
28 kAA_Clip_Type,
29 kEffect_Type,
30 };
herbb10fe492016-01-08 13:48:43 -080031 RRectGM(Type type) : fType(type) { }
32
33protected:
34
35 void onOnceBeforeDraw() override {
caryclark65cdba62015-06-15 06:51:08 -070036 this->setBGColor(sk_tool_utils::color_to_565(0xFFDDDDDD));
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000037 this->setUpRRects();
38 }
39
mtklein36352bf2015-03-25 18:17:31 -070040 SkString onShortName() override {
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000041 SkString name("rrect");
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000042 switch (fType) {
43 case kBW_Draw_Type:
44 name.append("_draw_bw");
45 break;
46 case kAA_Draw_Type:
47 name.append("_draw_aa");
48 break;
49 case kBW_Clip_Type:
50 name.append("_clip_bw");
51 break;
52 case kAA_Clip_Type:
53 name.append("_clip_aa");
54 break;
55 case kEffect_Type:
56 name.append("_effect");
57 break;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000058 }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000059 return name;
60 }
61
mtklein36352bf2015-03-25 18:17:31 -070062 SkISize onISize() override { return SkISize::Make(kImageWidth, kImageHeight); }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000063
mtklein36352bf2015-03-25 18:17:31 -070064 void onDraw(SkCanvas* canvas) override {
Brian Osman11052242016-10-27 14:47:55 -040065 GrRenderTargetContext* renderTargetContext =
66 canvas->internal_private_accessTopLayerRenderTargetContext();
67 if (kEffect_Type == fType && !renderTargetContext) {
halcanary2a243382015-09-09 08:16:41 -070068 skiagm::GM::DrawGpuOnlyMessage(canvas);
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000069 return;
70 }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000071
Robert Phillips7c525e62018-06-12 10:11:12 -040072 GrContext* context = canvas->getGrContext();
73 if (kEffect_Type == fType && !context) {
74 skiagm::GM::DrawGpuOnlyMessage(canvas);
75 return;
76 }
77
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000078 SkPaint paint;
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000079 if (kAA_Draw_Type == fType) {
80 paint.setAntiAlias(true);
81 }
skia.committer@gmail.comf1f66c02014-03-05 03:02:06 +000082
mtkleindbfd7ab2016-09-01 11:24:54 -070083 const SkRect kMaxTileBound = SkRect::MakeWH(SkIntToScalar(kTileX),
84 SkIntToScalar(kTileY));
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +000085#ifdef SK_DEBUG
mtkleindbfd7ab2016-09-01 11:24:54 -070086 const SkRect kMaxImageBound = SkRect::MakeWH(SkIntToScalar(kImageWidth),
87 SkIntToScalar(kImageHeight));
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +000088#endif
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +000089
Ethan Nicholas1706f842017-11-10 11:58:19 -050090 int lastEdgeType = (kEffect_Type == fType) ? (int) GrClipEdgeType::kLast: 0;
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) {
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000106 SkRRect rrect = fRRects[curRRect];
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000107 rrect.offset(SkIntToScalar(x), SkIntToScalar(y));
Ethan Nicholas0f3c7322017-11-09 14:51:17 -0500108 GrClipEdgeType edgeType = (GrClipEdgeType) et;
Brian Salomon14471772017-12-05 10:35:15 -0500109 const auto& caps = *renderTargetContext->caps()->shaderCaps();
110 auto fp = GrRRectEffect::Make(edgeType, rrect, caps);
joshualittb0a8a372014-09-23 09:50:21 -0700111 if (fp) {
Brian Salomon82f44312017-01-11 13:42:54 -0500112 GrPaint grPaint;
113 grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
robertphillips28a838e2016-06-23 14:07:00 -0700114 grPaint.addCoverageFragmentProcessor(std::move(fp));
Brian Salomonac70f842017-05-08 10:43:33 -0400115 grPaint.setColor4f(GrColor4f(0, 0, 0, 1.f));
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000116
117 SkRect bounds = rrect.getBounds();
118 bounds.outset(2.f, 2.f);
skia.committer@gmail.comf1f66c02014-03-05 03:02:06 +0000119
Brian Salomonac70f842017-05-08 10:43:33 -0400120 renderTargetContext->priv().testingOnly_addDrawOp(
Robert Phillips7c525e62018-06-12 10:11:12 -0400121 GrRectOpFactory::MakeNonAAFill(context, std::move(grPaint),
Brian Salomonbaaf4392017-06-15 09:59:23 -0400122 SkMatrix::I(), bounds,
123 GrAAType::kNone));
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000124 } else {
125 drew = false;
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000126 }
127 } else if (kBW_Clip_Type == fType || kAA_Clip_Type == fType) {
128 bool aaClip = (kAA_Clip_Type == fType);
reed66998382016-09-21 11:15:07 -0700129 canvas->clipRRect(fRRects[curRRect], aaClip);
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000130 canvas->drawRect(kMaxTileBound, paint);
131 } else {
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000132 canvas->drawRRect(fRRects[curRRect], paint);
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000133 }
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000134 canvas->restore();
commit-bot@chromium.orgbfce48e2014-03-10 19:33:16 +0000135 if (drew) {
136 x = x + kTileX;
137 if (x > kImageWidth) {
138 x = 1;
139 y += kTileY;
140 }
141 }
142 }
143 if (x != 1) {
144 y += kTileY;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000145 }
146 }
147 }
148
149 void setUpRRects() {
skia.committer@gmail.com7a03d862012-12-18 02:03:03 +0000150 // 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 +0000151 // the screen in kTileX x kTileY tiles. The extra empty pixels on each side are for AA.
152
153 // simple cases
154 fRRects[0].setRect(SkRect::MakeWH(kTileX-2, kTileY-2));
155 fRRects[1].setOval(SkRect::MakeWH(kTileX-2, kTileY-2));
156 fRRects[2].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 10, 10);
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000157 fRRects[3].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 10, 5);
158 // small circular corners are an interesting test case for gpu clipping
159 fRRects[4].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 1, 1);
160 fRRects[5].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 0.5f, 0.5f);
161 fRRects[6].setRectXY(SkRect::MakeWH(kTileX-2, kTileY-2), 0.2f, 0.2f);
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000162
163 // The first complex case needs special handling since it is a square
164 fRRects[kNumSimpleCases].setRectRadii(SkRect::MakeWH(kTileY-2, kTileY-2), gRadii[0]);
mike@reedtribe.orgf6100c82012-12-24 13:56:17 +0000165 for (size_t i = 1; i < SK_ARRAY_COUNT(gRadii); ++i) {
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000166 fRRects[kNumSimpleCases+i].setRectRadii(SkRect::MakeWH(kTileX-2, kTileY-2), gRadii[i]);
167 }
168 }
169
170private:
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000171 Type fType;
skia.committer@gmail.comf1f66c02014-03-05 03:02:06 +0000172
mtkleindbfd7ab2016-09-01 11:24:54 -0700173 static constexpr int kImageWidth = 640;
174 static constexpr int kImageHeight = 480;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000175
mtkleindbfd7ab2016-09-01 11:24:54 -0700176 static constexpr int kTileX = 80;
177 static constexpr int kTileY = 40;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000178
mtkleindbfd7ab2016-09-01 11:24:54 -0700179 static constexpr int kNumSimpleCases = 7;
180 static constexpr int kNumComplexCases = 35;
robertphillips@google.com5683d422012-12-17 21:58:02 +0000181 static const SkVector gRadii[kNumComplexCases][4];
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000182
mtkleindbfd7ab2016-09-01 11:24:54 -0700183 static constexpr int kNumRRects = kNumSimpleCases + kNumComplexCases;
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000184 SkRRect fRRects[kNumRRects];
185
186 typedef GM INHERITED;
187};
188
189// Radii for the various test cases. Order is UL, UR, LR, LL
190const SkVector RRectGM::gRadii[kNumComplexCases][4] = {
191 // a circle
192 { { kTileY, kTileY }, { kTileY, kTileY }, { kTileY, kTileY }, { kTileY, kTileY } },
193
194 // odd ball cases
195 { { 8, 8 }, { 32, 32 }, { 8, 8 }, { 32, 32 } },
196 { { 16, 8 }, { 8, 16 }, { 16, 8 }, { 8, 16 } },
197 { { 0, 0 }, { 16, 16 }, { 8, 8 }, { 32, 32 } },
198
199 // UL
200 { { 30, 30 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
201 { { 30, 15 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
202 { { 15, 30 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
203
204 // UR
205 { { 0, 0 }, { 30, 30 }, { 0, 0 }, { 0, 0 } },
206 { { 0, 0 }, { 30, 15 }, { 0, 0 }, { 0, 0 } },
207 { { 0, 0 }, { 15, 30 }, { 0, 0 }, { 0, 0 } },
208
209 // LR
210 { { 0, 0 }, { 0, 0 }, { 30, 30 }, { 0, 0 } },
211 { { 0, 0 }, { 0, 0 }, { 30, 15 }, { 0, 0 } },
212 { { 0, 0 }, { 0, 0 }, { 15, 30 }, { 0, 0 } },
213
214 // LL
215 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 30, 30 } },
216 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 30, 15 } },
217 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 15, 30 } },
218
219 // over-sized radii
220 { { 0, 0 }, { 100, 400 }, { 0, 0 }, { 0, 0 } },
221 { { 0, 0 }, { 400, 400 }, { 0, 0 }, { 0, 0 } },
222 { { 400, 400 }, { 400, 400 }, { 400, 400 }, { 400, 400 } },
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000223
224 // circular corner tabs
225 { { 0, 0 }, { 20, 20 }, { 20, 20 }, { 0, 0 } },
226 { { 20, 20 }, { 20, 20 }, { 0, 0 }, { 0, 0 } },
227 { { 0, 0 }, { 0, 0 }, { 20, 20 }, { 20, 20 } },
228 { { 20, 20 }, { 0, 0 }, { 0, 0 }, { 20, 20 } },
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000229
commit-bot@chromium.org04eff722014-03-24 14:53:09 +0000230 // small radius circular corner tabs
231 { { 0, 0 }, { 0.2f, 0.2f }, { 0.2f, 0.2f }, { 0, 0 } },
232 { { 0.3f, 0.3f }, { 0.3f, .3f }, { 0, 0 }, { 0, 0 } },
233
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000234 // single circular corner cases
235 { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 15, 15 } },
236 { { 0, 0 }, { 0, 0 }, { 15, 15 }, { 0, 0 } },
237 { { 0, 0 }, { 15, 15 }, { 0, 0 }, { 0, 0 } },
238 { { 15, 15 }, { 0, 0 }, { 0, 0 }, { 0, 0 } },
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000239
240 // nine patch elliptical
241 { { 5, 7 }, { 8, 7 }, { 8, 12 }, { 5, 12 } },
242 { { 0, 7 }, { 8, 7 }, { 8, 12 }, { 0, 12 } },
commit-bot@chromium.org04eff722014-03-24 14:53:09 +0000243
244 // nine patch elliptical, small radii
245 { { 0.4f, 7 }, { 8, 7 }, { 8, 12 }, { 0.4f, 12 } },
246 { { 0.4f, 0.4f }, { 8, 0.4f }, { 8, 12 }, { 0.4f, 12 } },
247 { { 20, 0.4f }, { 18, 0.4f }, { 18, 0.4f }, { 20, 0.4f } },
248 { { 0.3f, 0.4f }, { 0.3f, 0.4f }, { 0.3f, 0.4f }, { 0.3f, 0.4f } },
249
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000250};
251
252///////////////////////////////////////////////////////////////////////////////
253
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000254DEF_GM( return new RRectGM(RRectGM::kAA_Draw_Type); )
255DEF_GM( return new RRectGM(RRectGM::kBW_Draw_Type); )
256DEF_GM( return new RRectGM(RRectGM::kAA_Clip_Type); )
257DEF_GM( return new RRectGM(RRectGM::kBW_Clip_Type); )
258DEF_GM( return new RRectGM(RRectGM::kEffect_Type); )
robertphillips@google.com4e18c7a2012-12-17 21:48:19 +0000259
260}