blob: f936ab1c0ac19b37c117b68f60809852acc9b577 [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
8
reed@google.com30db5992011-08-29 17:41:02 +00009#include "gm.h"
10#include "SkCanvas.h"
11#include "SkPath.h"
12#include "SkRandom.h"
13
14namespace skiagm {
15
16class ComplexClip2GM : public GM {
17public:
robertphillips@google.com2470b252012-05-15 17:03:16 +000018 ComplexClip2GM(bool doPaths, bool antiAlias)
19 : fDoPaths(doPaths)
20 , fAntiAlias(antiAlias) {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000021 this->setBGColor(SkColorSetRGB(0xDD,0xA0,0xDD));
rmistry@google.comae933ce2012-08-23 18:19:56 +000022
robertphillips@google.com2470b252012-05-15 17:03:16 +000023 // offset the rects a bit so we get antialiasing even in the rect case
robertphillips@google.comab5ec7e2012-08-02 12:37:01 +000024 SkScalar xA = SkFloatToScalar(0.65f);
25 SkScalar xB = SkFloatToScalar(10.65f);
26 SkScalar xC = SkFloatToScalar(20.65f);
27 SkScalar xD = SkFloatToScalar(30.65f);
28 SkScalar xE = SkFloatToScalar(40.65f);
29 SkScalar xF = SkFloatToScalar(50.65f);
reed@google.com30db5992011-08-29 17:41:02 +000030
robertphillips@google.comab5ec7e2012-08-02 12:37:01 +000031 SkScalar yA = SkFloatToScalar(0.65f);
32 SkScalar yB = SkFloatToScalar(10.65f);
33 SkScalar yC = SkFloatToScalar(20.65f);
34 SkScalar yD = SkFloatToScalar(30.65f);
35 SkScalar yE = SkFloatToScalar(40.65f);
36 SkScalar yF = SkFloatToScalar(50.65f);
reed@google.com30db5992011-08-29 17:41:02 +000037
38 fWidth = xF - xA;
39 fHeight = yF - yA;
40
bsalomon@google.com574f29d2011-08-29 18:05:05 +000041 fRects[0].set(xB, yB, xE, yE);
robertphillips@google.com2470b252012-05-15 17:03:16 +000042 fPaths[0].addRoundRect(fRects[0], SkIntToScalar(5), SkIntToScalar(5));
reed@google.com30db5992011-08-29 17:41:02 +000043 fRectColors[0] = SK_ColorRED;
44
bsalomon@google.com574f29d2011-08-29 18:05:05 +000045 fRects[1].set(xA, yA, xD, yD);
robertphillips@google.com2470b252012-05-15 17:03:16 +000046 fPaths[1].addRoundRect(fRects[1], SkIntToScalar(5), SkIntToScalar(5));
reed@google.com30db5992011-08-29 17:41:02 +000047 fRectColors[1] = SK_ColorGREEN;
48
bsalomon@google.com574f29d2011-08-29 18:05:05 +000049 fRects[2].set(xC, yA, xF, yD);
robertphillips@google.com2470b252012-05-15 17:03:16 +000050 fPaths[2].addRoundRect(fRects[2], SkIntToScalar(5), SkIntToScalar(5));
reed@google.com30db5992011-08-29 17:41:02 +000051 fRectColors[2] = SK_ColorBLUE;
52
bsalomon@google.com574f29d2011-08-29 18:05:05 +000053 fRects[3].set(xA, yC, xD, yF);
robertphillips@google.com2470b252012-05-15 17:03:16 +000054 fPaths[3].addRoundRect(fRects[3], SkIntToScalar(5), SkIntToScalar(5));
reed@google.com30db5992011-08-29 17:41:02 +000055 fRectColors[3] = SK_ColorYELLOW;
56
bsalomon@google.com574f29d2011-08-29 18:05:05 +000057 fRects[4].set(xC, yC, xF, yF);
robertphillips@google.com2470b252012-05-15 17:03:16 +000058 fPaths[4].addRoundRect(fRects[4], SkIntToScalar(5), SkIntToScalar(5));
reed@google.com30db5992011-08-29 17:41:02 +000059 fRectColors[4] = SK_ColorCYAN;
60
61 fTotalWidth = kCols * fWidth + SK_Scalar1 * (kCols + 1) * kPadX;
62 fTotalHeight = kRows * fHeight + SK_Scalar1 * (kRows + 1) * kPadY;
bsalomon@google.com574f29d2011-08-29 18:05:05 +000063
64 SkRegion::Op ops[] = {
65 SkRegion::kDifference_Op,
66 SkRegion::kIntersect_Op,
67 SkRegion::kUnion_Op,
68 SkRegion::kXOR_Op,
69 SkRegion::kReverseDifference_Op,
70 SkRegion::kReplace_Op,
71 };
72
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000073 SkLCGRandom r;
bsalomon@google.com574f29d2011-08-29 18:05:05 +000074 for (int i = 0; i < kRows; ++i) {
75 for (int j = 0; j < kCols; ++j) {
76 for (int k = 0; k < 5; ++k) {
77 fOps[j*kRows+i][k] = ops[r.nextU() % SK_ARRAY_COUNT(ops)];
78 }
79 }
80 }
reed@google.com30db5992011-08-29 17:41:02 +000081 }
82
reed@google.com30db5992011-08-29 17:41:02 +000083protected:
84
85 static const int kRows = 5;
86 static const int kCols = 5;
87 static const int kPadX = 20;
88 static const int kPadY = 20;
89
reed@google.com45482d12011-08-29 19:02:39 +000090 virtual SkString onShortName() {
robertphillips@google.com2470b252012-05-15 17:03:16 +000091 if (!fDoPaths && !fAntiAlias) {
92 return SkString("complexclip2");
93 }
94
95 SkString str;
rmistry@google.comae933ce2012-08-23 18:19:56 +000096 str.printf("complexclip2_%s_%s",
robertphillips@google.com2470b252012-05-15 17:03:16 +000097 fDoPaths ? "path" : "rect",
98 fAntiAlias ? "aa" : "bw");
99 return str;
reed@google.com30db5992011-08-29 17:41:02 +0000100 }
101
reed@google.com45482d12011-08-29 19:02:39 +0000102 virtual SkISize onISize() {
103 return make_isize(SkScalarRoundToInt(fTotalWidth),
104 SkScalarRoundToInt(fTotalHeight));
105 }
reed@google.com30db5992011-08-29 17:41:02 +0000106
reed@google.com30db5992011-08-29 17:41:02 +0000107 virtual void onDraw(SkCanvas* canvas) {
reed@google.com30db5992011-08-29 17:41:02 +0000108 SkPaint rectPaint;
109 rectPaint.setStyle(SkPaint::kStroke_Style);
110 rectPaint.setStrokeWidth(-1);
111
112 SkPaint fillPaint;
113 fillPaint.setColor(SkColorSetRGB(0xA0,0xDD,0xA0));
114
115 for (int i = 0; i < kRows; ++i) {
116 for (int j = 0; j < kCols; ++j) {
117 canvas->save();
robertphillips@google.com2470b252012-05-15 17:03:16 +0000118
reed@google.com30db5992011-08-29 17:41:02 +0000119 canvas->translate(kPadX * SK_Scalar1 + (fWidth + kPadX * SK_Scalar1)*j,
120 kPadY * SK_Scalar1 + (fHeight + kPadY * SK_Scalar1)*i);
robertphillips@google.com2470b252012-05-15 17:03:16 +0000121
rmistry@google.comae933ce2012-08-23 18:19:56 +0000122 // draw the original shapes first so we can see the
robertphillips@google.com2470b252012-05-15 17:03:16 +0000123 // antialiasing on the clipped draw
reed@google.com30db5992011-08-29 17:41:02 +0000124 for (int k = 0; k < 5; ++k) {
125 rectPaint.setColor(fRectColors[k]);
robertphillips@google.com2470b252012-05-15 17:03:16 +0000126 if (fDoPaths) {
127 canvas->drawPath(fPaths[k], rectPaint);
128 } else {
129 canvas->drawRect(fRects[k], rectPaint);
130 }
reed@google.com30db5992011-08-29 17:41:02 +0000131 }
robertphillips@google.com2470b252012-05-15 17:03:16 +0000132
133 for (int k = 0; k < 5; ++k) {
134 if (fDoPaths) {
rmistry@google.comae933ce2012-08-23 18:19:56 +0000135 canvas->clipPath(fPaths[k],
136 fOps[j*kRows+i][k],
robertphillips@google.com2470b252012-05-15 17:03:16 +0000137 fAntiAlias);
138 } else {
rmistry@google.comae933ce2012-08-23 18:19:56 +0000139 canvas->clipRect(fRects[k],
140 fOps[j*kRows+i][k],
robertphillips@google.com2470b252012-05-15 17:03:16 +0000141 fAntiAlias);
142 }
143 }
144 canvas->drawRect(SkRect::MakeWH(fWidth, fHeight), fillPaint);
reed@google.com30db5992011-08-29 17:41:02 +0000145 canvas->restore();
146 }
147 }
148 }
149private:
robertphillips@google.com2470b252012-05-15 17:03:16 +0000150 bool fDoPaths;
151 bool fAntiAlias;
reed@google.com30db5992011-08-29 17:41:02 +0000152 SkRect fRects[5];
robertphillips@google.com2470b252012-05-15 17:03:16 +0000153 SkPath fPaths[5];
reed@google.com30db5992011-08-29 17:41:02 +0000154 SkColor fRectColors[5];
155 SkRegion::Op fOps[kRows * kCols][5];
156 SkScalar fWidth;
157 SkScalar fHeight;
158 SkScalar fTotalWidth;
159 SkScalar fTotalHeight;
160
161 typedef GM INHERITED;
162};
163
164//////////////////////////////////////////////////////////////////////////////
165
robertphillips@google.com2470b252012-05-15 17:03:16 +0000166// bw rects
167static GM* MyFactory(void*) { return new ComplexClip2GM(false, false); }
reed@google.com30db5992011-08-29 17:41:02 +0000168static GMRegistry reg(MyFactory);
169
robertphillips@google.com2470b252012-05-15 17:03:16 +0000170// bw paths
171static GM* MyFactory2(void*) { return new ComplexClip2GM(true, false); }
172static GMRegistry reg2(MyFactory2);
173
174// aa rects
175static GM* MyFactory3(void*) { return new ComplexClip2GM(false, true); }
176static GMRegistry reg3(MyFactory3);
177
178// aa paths
179static GM* MyFactory4(void*) { return new ComplexClip2GM(true, true); }
180static GMRegistry reg4(MyFactory4);
181
reed@google.com30db5992011-08-29 17:41:02 +0000182}