blob: 61a19fd48624e02f0debdda4d03c0afac27b6b7b [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
bsalomon@google.com807cec42011-03-10 19:20:15 +00008#include "gm.h"
9#include "SkCanvas.h"
10//#include "SkParsePath.h"
11#include "SkPath.h"
12//#include "SkRandom.h"
13
14namespace skiagm {
15
reed@google.coma8f60f22011-12-08 16:18:29 +000016static const SkColor gPathColor = SK_ColorBLACK;
17static const SkColor gClipAColor = SK_ColorBLUE;
18static const SkColor gClipBColor = SK_ColorRED;
19
bsalomon@google.com807cec42011-03-10 19:20:15 +000020class ComplexClipGM : public GM {
reed@google.coma8f60f22011-12-08 16:18:29 +000021 bool fDoAAClip;
robertphillips@google.com54bb7ab2012-07-13 14:55:25 +000022 bool fDoSaveLayer;
bsalomon@google.com807cec42011-03-10 19:20:15 +000023public:
rmistry@google.comd6176b02012-08-23 18:14:13 +000024 ComplexClipGM(bool aaclip, bool saveLayer)
robertphillips@google.com50a69a02012-07-12 13:48:46 +000025 : fDoAAClip(aaclip)
robertphillips@google.com54bb7ab2012-07-13 14:55:25 +000026 , fDoSaveLayer(saveLayer) {
reed@google.coma8f60f22011-12-08 16:18:29 +000027 this->setBGColor(0xFFDDDDDD);
28// this->setBGColor(SkColorSetRGB(0xB0,0xDD,0xB0));
bsalomon@google.com807cec42011-03-10 19:20:15 +000029 }
30
31protected:
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +000032 virtual uint32_t onGetFlags() const SK_OVERRIDE {
33 return kSkipTiled_Flag;
34 }
35
bsalomon@google.com807cec42011-03-10 19:20:15 +000036
37 SkString onShortName() {
reed@google.coma8f60f22011-12-08 16:18:29 +000038 SkString str;
rmistry@google.comd6176b02012-08-23 18:14:13 +000039 str.printf("complexclip_%s%s",
robertphillips@google.com50a69a02012-07-12 13:48:46 +000040 fDoAAClip ? "aa" : "bw",
robertphillips@google.com54bb7ab2012-07-13 14:55:25 +000041 fDoSaveLayer ? "_layer" : "");
reed@google.coma8f60f22011-12-08 16:18:29 +000042 return str;
bsalomon@google.com807cec42011-03-10 19:20:15 +000043 }
44
tfarinaf5393182014-06-09 23:59:03 -070045 SkISize onISize() { return SkISize::Make(970, 780); }
bsalomon@google.com807cec42011-03-10 19:20:15 +000046
bsalomon@google.com807cec42011-03-10 19:20:15 +000047 virtual void onDraw(SkCanvas* canvas) {
48 SkPath path;
49 path.moveTo(SkIntToScalar(0), SkIntToScalar(50));
50 path.quadTo(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(50), SkIntToScalar(0));
51 path.lineTo(SkIntToScalar(175), SkIntToScalar(0));
52 path.quadTo(SkIntToScalar(200), SkIntToScalar(0), SkIntToScalar(200), SkIntToScalar(25));
53 path.lineTo(SkIntToScalar(200), SkIntToScalar(150));
54 path.quadTo(SkIntToScalar(200), SkIntToScalar(200), SkIntToScalar(150), SkIntToScalar(200));
55 path.lineTo(SkIntToScalar(0), SkIntToScalar(200));
56 path.close();
57 path.moveTo(SkIntToScalar(50), SkIntToScalar(50));
58 path.lineTo(SkIntToScalar(150), SkIntToScalar(50));
59 path.lineTo(SkIntToScalar(150), SkIntToScalar(125));
60 path.quadTo(SkIntToScalar(150), SkIntToScalar(150), SkIntToScalar(125), SkIntToScalar(150));
61 path.lineTo(SkIntToScalar(50), SkIntToScalar(150));
62 path.close();
63 path.setFillType(SkPath::kEvenOdd_FillType);
bsalomon@google.com807cec42011-03-10 19:20:15 +000064 SkPaint pathPaint;
65 pathPaint.setAntiAlias(true);
reed@google.coma8f60f22011-12-08 16:18:29 +000066 pathPaint.setColor(gPathColor);
bsalomon@google.com807cec42011-03-10 19:20:15 +000067
68 SkPath clipA;
69 clipA.moveTo(SkIntToScalar(10), SkIntToScalar(20));
70 clipA.lineTo(SkIntToScalar(165), SkIntToScalar(22));
71 clipA.lineTo(SkIntToScalar(70), SkIntToScalar(105));
72 clipA.lineTo(SkIntToScalar(165), SkIntToScalar(177));
73 clipA.lineTo(SkIntToScalar(-5), SkIntToScalar(180));
74 clipA.close();
bsalomon@google.com807cec42011-03-10 19:20:15 +000075
76 SkPath clipB;
77 clipB.moveTo(SkIntToScalar(40), SkIntToScalar(10));
78 clipB.lineTo(SkIntToScalar(190), SkIntToScalar(15));
79 clipB.lineTo(SkIntToScalar(195), SkIntToScalar(190));
80 clipB.lineTo(SkIntToScalar(40), SkIntToScalar(185));
81 clipB.lineTo(SkIntToScalar(155), SkIntToScalar(100));
82 clipB.close();
bsalomon@google.com807cec42011-03-10 19:20:15 +000083
bsalomon@google.com807cec42011-03-10 19:20:15 +000084 SkPaint paint;
85 paint.setAntiAlias(true);
caryclark5fb6bd42014-06-23 11:25:00 -070086 sk_tool_utils::set_portable_typeface(&paint);
reed@google.coma8f60f22011-12-08 16:18:29 +000087 paint.setTextSize(SkIntToScalar(20));
bsalomon@google.com807cec42011-03-10 19:20:15 +000088
89 static const struct {
90 SkRegion::Op fOp;
91 const char* fName;
92 } gOps[] = { //extra spaces in names for measureText
93 {SkRegion::kIntersect_Op, "Isect "},
94 {SkRegion::kDifference_Op, "Diff " },
95 {SkRegion::kUnion_Op, "Union "},
96 {SkRegion::kXOR_Op, "Xor " },
97 {SkRegion::kReverseDifference_Op, "RDiff "}
98 };
99
reed@google.coma8f60f22011-12-08 16:18:29 +0000100 canvas->translate(SkIntToScalar(20), SkIntToScalar(20));
bsalomon@google.com807cec42011-03-10 19:20:15 +0000101 canvas->scale(3 * SK_Scalar1 / 4, 3 * SK_Scalar1 / 4);
bsalomon@google.com807cec42011-03-10 19:20:15 +0000102
robertphillips@google.com54bb7ab2012-07-13 14:55:25 +0000103 if (fDoSaveLayer) {
104 // We want the layer to appear symmetric relative to actual
105 // device boundaries so we need to "undo" the effect of the
106 // scale and translate
107 SkRect bounds = SkRect::MakeLTRB(
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000108 4.0f/3.0f * -20,
109 4.0f/3.0f * -20,
110 4.0f/3.0f * (this->getISize().fWidth - 20),
111 4.0f/3.0f * (this->getISize().fHeight - 20));
robertphillips@google.com54bb7ab2012-07-13 14:55:25 +0000112
113 bounds.inset(SkIntToScalar(100), SkIntToScalar(100));
robertphillips@google.com50a69a02012-07-12 13:48:46 +0000114 SkPaint boundPaint;
115 boundPaint.setColor(SK_ColorRED);
116 boundPaint.setStyle(SkPaint::kStroke_Style);
117 canvas->drawRect(bounds, boundPaint);
118 canvas->saveLayer(&bounds, NULL);
119 }
120
reed@google.coma8f60f22011-12-08 16:18:29 +0000121 for (int invBits = 0; invBits < 4; ++invBits) {
122 canvas->save();
bsalomon@google.com807cec42011-03-10 19:20:15 +0000123 for (size_t op = 0; op < SK_ARRAY_COUNT(gOps); ++op) {
reed@google.coma8f60f22011-12-08 16:18:29 +0000124 this->drawHairlines(canvas, path, clipA, clipB);
125
126 bool doInvA = SkToBool(invBits & 1);
127 bool doInvB = SkToBool(invBits & 2);
bsalomon@google.com807cec42011-03-10 19:20:15 +0000128 canvas->save();
129 // set clip
reed@google.coma8f60f22011-12-08 16:18:29 +0000130 clipA.setFillType(doInvA ? SkPath::kInverseEvenOdd_FillType :
131 SkPath::kEvenOdd_FillType);
132 clipB.setFillType(doInvB ? SkPath::kInverseEvenOdd_FillType :
133 SkPath::kEvenOdd_FillType);
134 canvas->clipPath(clipA, SkRegion::kIntersect_Op, fDoAAClip);
135 canvas->clipPath(clipB, gOps[op].fOp, fDoAAClip);
bsalomon@google.com807cec42011-03-10 19:20:15 +0000136
137 // draw path clipped
138 canvas->drawPath(path, pathPaint);
139 canvas->restore();
140
bsalomon@google.com807cec42011-03-10 19:20:15 +0000141
reed@google.coma8f60f22011-12-08 16:18:29 +0000142 SkScalar txtX = SkIntToScalar(45);
143 paint.setColor(gClipAColor);
144 const char* aTxt = doInvA ? "InvA " : "A ";
bsalomon@google.com807cec42011-03-10 19:20:15 +0000145 canvas->drawText(aTxt, strlen(aTxt), txtX, SkIntToScalar(220), paint);
146 txtX += paint.measureText(aTxt, strlen(aTxt));
147 paint.setColor(SK_ColorBLACK);
148 canvas->drawText(gOps[op].fName, strlen(gOps[op].fName),
149 txtX, SkIntToScalar(220), paint);
150 txtX += paint.measureText(gOps[op].fName, strlen(gOps[op].fName));
reed@google.coma8f60f22011-12-08 16:18:29 +0000151 paint.setColor(gClipBColor);
152 const char* bTxt = doInvB ? "InvB " : "B ";
153 canvas->drawText(bTxt, strlen(bTxt), txtX, SkIntToScalar(220), paint);
bsalomon@google.com807cec42011-03-10 19:20:15 +0000154
155 canvas->translate(SkIntToScalar(250),0);
156 }
reed@google.coma8f60f22011-12-08 16:18:29 +0000157 canvas->restore();
158 canvas->translate(0, SkIntToScalar(250));
bsalomon@google.com807cec42011-03-10 19:20:15 +0000159 }
robertphillips@google.com50a69a02012-07-12 13:48:46 +0000160
robertphillips@google.com54bb7ab2012-07-13 14:55:25 +0000161 if (fDoSaveLayer) {
robertphillips@google.com50a69a02012-07-12 13:48:46 +0000162 canvas->restore();
163 }
bsalomon@google.com807cec42011-03-10 19:20:15 +0000164 }
165private:
reed@google.coma8f60f22011-12-08 16:18:29 +0000166 void drawHairlines(SkCanvas* canvas, const SkPath& path,
167 const SkPath& clipA, const SkPath& clipB) {
168 SkPaint paint;
169 paint.setAntiAlias(true);
170 paint.setStyle(SkPaint::kStroke_Style);
171 const SkAlpha fade = 0x33;
172
173 // draw path in hairline
174 paint.setColor(gPathColor); paint.setAlpha(fade);
175 canvas->drawPath(path, paint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000176
reed@google.coma8f60f22011-12-08 16:18:29 +0000177 // draw clips in hair line
178 paint.setColor(gClipAColor); paint.setAlpha(fade);
179 canvas->drawPath(clipA, paint);
180 paint.setColor(gClipBColor); paint.setAlpha(fade);
181 canvas->drawPath(clipB, paint);
182 }
183
bsalomon@google.com807cec42011-03-10 19:20:15 +0000184 typedef GM INHERITED;
185};
186
187//////////////////////////////////////////////////////////////////////////////
188
robertphillips@google.com50a69a02012-07-12 13:48:46 +0000189// aliased and anti-aliased w/o a layer
190static GM* gFact0(void*) { return new ComplexClipGM(false, false); }
191static GM* gFact1(void*) { return new ComplexClipGM(true, false); }
192
193// aliased and anti-aliased w/ a layer
194static GM* gFact2(void*) { return new ComplexClipGM(false, true); }
195static GM* gFact3(void*) { return new ComplexClipGM(true, true); }
reed@google.coma8f60f22011-12-08 16:18:29 +0000196
197static GMRegistry gReg0(gFact0);
198static GMRegistry gReg1(gFact1);
robertphillips@google.com50a69a02012-07-12 13:48:46 +0000199static GMRegistry gReg2(gFact2);
200static GMRegistry gReg3(gFact3);
bsalomon@google.com807cec42011-03-10 19:20:15 +0000201
202}