blob: 46e2aad00709493afa8897df8dfb5f4979367a13 [file] [log] [blame]
reed@google.com30db5992011-08-29 17:41:02 +00001/*
2 * Copyright 2011 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 */
bsalomon@google.com574f29d2011-08-29 18:05:05 +00007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
9#include "include/core/SkCanvas.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040010#include "include/core/SkClipOp.h"
11#include "include/core/SkColor.h"
12#include "include/core/SkPaint.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050013#include "include/core/SkPath.h"
14#include "include/core/SkRRect.h"
15#include "include/core/SkRect.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040016#include "include/core/SkScalar.h"
17#include "include/core/SkSize.h"
18#include "include/core/SkString.h"
19#include "include/core/SkTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "include/utils/SkRandom.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040021#include "src/core/SkClipOpPriv.h"
reed@google.com30db5992011-08-29 17:41:02 +000022
23namespace skiagm {
24
25class ComplexClip2GM : public GM {
26public:
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +000027 enum Clip {
28 kRect_Clip,
29 kRRect_Clip,
30 kPath_Clip
31 };
32
33 ComplexClip2GM(Clip clip, bool antiAlias)
34 : fClip(clip)
robertphillips@google.com2470b252012-05-15 17:03:16 +000035 , fAntiAlias(antiAlias) {
caryclark63c684a2015-02-25 09:04:04 -080036 SkScalar xA = 0.65f;
37 SkScalar xF = 50.65f;
38
39 SkScalar yA = 0.65f;
40 SkScalar yF = 50.65f;
41
42 fWidth = xF - xA;
43 fHeight = yF - yA;
44
45 fTotalWidth = kCols * fWidth + SK_Scalar1 * (kCols + 1) * kPadX;
46 fTotalHeight = kRows * fHeight + SK_Scalar1 * (kRows + 1) * kPadY;
47 }
48
49protected:
mtklein36352bf2015-03-25 18:17:31 -070050 void onOnceBeforeDraw() override {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000051 this->setBGColor(SkColorSetRGB(0xDD,0xA0,0xDD));
rmistry@google.comae933ce2012-08-23 18:19:56 +000052
robertphillips@google.com2470b252012-05-15 17:03:16 +000053 // offset the rects a bit so we get antialiasing even in the rect case
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000054 SkScalar xA = 0.65f;
55 SkScalar xB = 10.65f;
56 SkScalar xC = 20.65f;
57 SkScalar xD = 30.65f;
58 SkScalar xE = 40.65f;
59 SkScalar xF = 50.65f;
reed@google.com30db5992011-08-29 17:41:02 +000060
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000061 SkScalar yA = 0.65f;
62 SkScalar yB = 10.65f;
63 SkScalar yC = 20.65f;
64 SkScalar yD = 30.65f;
65 SkScalar yE = 40.65f;
66 SkScalar yF = 50.65f;
reed@google.com30db5992011-08-29 17:41:02 +000067
Mike Reed92b33352019-08-24 19:39:13 -040068 fRects[0].setLTRB(xB, yB, xE, yE);
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +000069 fRRects[0].setRectXY(fRects[0], 7, 7);
Mike Reed4241f5e2019-09-14 19:13:23 +000070 fPaths[0].addRoundRect(fRects[0], 5, 5);
reed@google.com30db5992011-08-29 17:41:02 +000071 fRectColors[0] = SK_ColorRED;
72
Mike Reed92b33352019-08-24 19:39:13 -040073 fRects[1].setLTRB(xA, yA, xD, yD);
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +000074 fRRects[1].setRectXY(fRects[1], 7, 7);
Mike Reed4241f5e2019-09-14 19:13:23 +000075 fPaths[1].addRoundRect(fRects[1], 5, 5);
reed@google.com30db5992011-08-29 17:41:02 +000076 fRectColors[1] = SK_ColorGREEN;
77
Mike Reed92b33352019-08-24 19:39:13 -040078 fRects[2].setLTRB(xC, yA, xF, yD);
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +000079 fRRects[2].setRectXY(fRects[2], 7, 7);
Mike Reed4241f5e2019-09-14 19:13:23 +000080 fPaths[2].addRoundRect(fRects[2], 5, 5);
reed@google.com30db5992011-08-29 17:41:02 +000081 fRectColors[2] = SK_ColorBLUE;
82
Mike Reed92b33352019-08-24 19:39:13 -040083 fRects[3].setLTRB(xA, yC, xD, yF);
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +000084 fRRects[3].setRectXY(fRects[3], 7, 7);
Mike Reed4241f5e2019-09-14 19:13:23 +000085 fPaths[3].addRoundRect(fRects[3], 5, 5);
reed@google.com30db5992011-08-29 17:41:02 +000086 fRectColors[3] = SK_ColorYELLOW;
87
Mike Reed92b33352019-08-24 19:39:13 -040088 fRects[4].setLTRB(xC, yC, xF, yF);
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +000089 fRRects[4].setRectXY(fRects[4], 7, 7);
Mike Reed4241f5e2019-09-14 19:13:23 +000090 fPaths[4].addRoundRect(fRects[4], 5, 5);
reed@google.com30db5992011-08-29 17:41:02 +000091 fRectColors[4] = SK_ColorCYAN;
92
Mike Reedc1f77742016-12-09 09:00:50 -050093 const SkClipOp ops[] = {
94 kDifference_SkClipOp,
95 kIntersect_SkClipOp,
96 kUnion_SkClipOp,
97 kXOR_SkClipOp,
98 kReverseDifference_SkClipOp,
99 kReplace_SkClipOp,
bsalomon@google.com574f29d2011-08-29 18:05:05 +0000100 };
101
scroggof9d61012014-12-15 12:54:51 -0800102 SkRandom r;
bsalomon@google.com574f29d2011-08-29 18:05:05 +0000103 for (int i = 0; i < kRows; ++i) {
104 for (int j = 0; j < kCols; ++j) {
105 for (int k = 0; k < 5; ++k) {
106 fOps[j*kRows+i][k] = ops[r.nextU() % SK_ARRAY_COUNT(ops)];
107 }
108 }
109 }
reed@google.com30db5992011-08-29 17:41:02 +0000110 }
111
mtkleindbfd7ab2016-09-01 11:24:54 -0700112 static constexpr int kRows = 5;
113 static constexpr int kCols = 5;
114 static constexpr int kPadX = 20;
115 static constexpr int kPadY = 20;
reed@google.com30db5992011-08-29 17:41:02 +0000116
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000117 static const char* ClipStr(Clip clip) {
118 switch (clip) {
119 case kRect_Clip:
120 return "rect";
121 case kRRect_Clip:
122 return "rrect";
123 case kPath_Clip:
124 return "path";
125 }
126 SkDEBUGFAIL("Unknown clip type.");
127 return "";
128 }
129
mtkleinf0599002015-07-13 06:18:39 -0700130 SkString onShortName() override {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000131 if (kRect_Clip == fClip && !fAntiAlias) {
robertphillips@google.com2470b252012-05-15 17:03:16 +0000132 return SkString("complexclip2");
133 }
134
135 SkString str;
rmistry@google.comae933ce2012-08-23 18:19:56 +0000136 str.printf("complexclip2_%s_%s",
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000137 ClipStr(fClip),
robertphillips@google.com2470b252012-05-15 17:03:16 +0000138 fAntiAlias ? "aa" : "bw");
139 return str;
reed@google.com30db5992011-08-29 17:41:02 +0000140 }
141
mtkleinf0599002015-07-13 06:18:39 -0700142 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -0700143 return SkISize::Make(SkScalarRoundToInt(fTotalWidth),
144 SkScalarRoundToInt(fTotalHeight));
reed@google.com45482d12011-08-29 19:02:39 +0000145 }
reed@google.com30db5992011-08-29 17:41:02 +0000146
mtkleinf0599002015-07-13 06:18:39 -0700147 void onDraw(SkCanvas* canvas) override {
reed@google.com30db5992011-08-29 17:41:02 +0000148 SkPaint rectPaint;
149 rectPaint.setStyle(SkPaint::kStroke_Style);
150 rectPaint.setStrokeWidth(-1);
151
152 SkPaint fillPaint;
153 fillPaint.setColor(SkColorSetRGB(0xA0,0xDD,0xA0));
154
155 for (int i = 0; i < kRows; ++i) {
156 for (int j = 0; j < kCols; ++j) {
157 canvas->save();
robertphillips@google.com2470b252012-05-15 17:03:16 +0000158
reed@google.com30db5992011-08-29 17:41:02 +0000159 canvas->translate(kPadX * SK_Scalar1 + (fWidth + kPadX * SK_Scalar1)*j,
160 kPadY * SK_Scalar1 + (fHeight + kPadY * SK_Scalar1)*i);
robertphillips@google.com2470b252012-05-15 17:03:16 +0000161
rmistry@google.comae933ce2012-08-23 18:19:56 +0000162 // draw the original shapes first so we can see the
robertphillips@google.com2470b252012-05-15 17:03:16 +0000163 // antialiasing on the clipped draw
reed@google.com30db5992011-08-29 17:41:02 +0000164 for (int k = 0; k < 5; ++k) {
165 rectPaint.setColor(fRectColors[k]);
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000166 switch (fClip) {
167 case kRect_Clip:
168 canvas->drawRect(fRects[k], rectPaint);
169 break;
170 case kRRect_Clip:
171 canvas->drawRRect(fRRects[k], rectPaint);
172 break;
173 case kPath_Clip:
174 canvas->drawPath(fPaths[k], rectPaint);
175 break;
robertphillips@google.com2470b252012-05-15 17:03:16 +0000176 }
reed@google.com30db5992011-08-29 17:41:02 +0000177 }
robertphillips@google.com2470b252012-05-15 17:03:16 +0000178
179 for (int k = 0; k < 5; ++k) {
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000180 switch (fClip) {
181 case kRect_Clip:
182 canvas->clipRect(fRects[k],
183 fOps[j*kRows+i][k],
184 fAntiAlias);
185 break;
186 case kRRect_Clip:
187 canvas->clipRRect(fRRects[k],
188 fOps[j*kRows+i][k],
189 fAntiAlias);
190 break;
191 case kPath_Clip:
192 canvas->clipPath(fPaths[k],
193 fOps[j*kRows+i][k],
194 fAntiAlias);
195 break;
robertphillips@google.com2470b252012-05-15 17:03:16 +0000196 }
197 }
198 canvas->drawRect(SkRect::MakeWH(fWidth, fHeight), fillPaint);
reed@google.com30db5992011-08-29 17:41:02 +0000199 canvas->restore();
200 }
201 }
202 }
203private:
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000204 Clip fClip;
robertphillips@google.com2470b252012-05-15 17:03:16 +0000205 bool fAntiAlias;
reed@google.com30db5992011-08-29 17:41:02 +0000206 SkRect fRects[5];
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000207 SkRRect fRRects[5];
robertphillips@google.com2470b252012-05-15 17:03:16 +0000208 SkPath fPaths[5];
reed@google.com30db5992011-08-29 17:41:02 +0000209 SkColor fRectColors[5];
Mike Reedc1f77742016-12-09 09:00:50 -0500210 SkClipOp fOps[kRows * kCols][5];
reed@google.com30db5992011-08-29 17:41:02 +0000211 SkScalar fWidth;
212 SkScalar fHeight;
213 SkScalar fTotalWidth;
214 SkScalar fTotalHeight;
215
216 typedef GM INHERITED;
217};
218
219//////////////////////////////////////////////////////////////////////////////
220
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000221// bw
222DEF_GM( return new ComplexClip2GM(ComplexClip2GM::kRect_Clip, false); )
223DEF_GM( return new ComplexClip2GM(ComplexClip2GM::kRRect_Clip, false); )
224DEF_GM( return new ComplexClip2GM(ComplexClip2GM::kPath_Clip, false); )
reed@google.com30db5992011-08-29 17:41:02 +0000225
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000226// aa
227DEF_GM( return new ComplexClip2GM(ComplexClip2GM::kRect_Clip, true); )
228DEF_GM( return new ComplexClip2GM(ComplexClip2GM::kRRect_Clip, true); )
229DEF_GM( return new ComplexClip2GM(ComplexClip2GM::kPath_Clip, true); )
robertphillips@google.com2470b252012-05-15 17:03:16 +0000230
reed@google.com30db5992011-08-29 17:41:02 +0000231}