1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "gm.h"
#include "SkCanvas.h"
#include "SkPath.h"
#include "SkRandom.h"
namespace skiagm {
class ComplexClip2GM : public GM {
public:
ComplexClip2GM() {
this->setBGColor(SkColorSetRGB(0xDD,0xA0,0xDD));
SkScalar xA = 0 * SK_Scalar1;
SkScalar xB = 10 * SK_Scalar1;
SkScalar xC = 20 * SK_Scalar1;
SkScalar xD = 30 * SK_Scalar1;
SkScalar xE = 40 * SK_Scalar1;
SkScalar xF = 50 * SK_Scalar1;
SkScalar yA = 0 * SK_Scalar1;
SkScalar yB = 10 * SK_Scalar1;
SkScalar yC = 20 * SK_Scalar1;
SkScalar yD = 30 * SK_Scalar1;
SkScalar yE = 40 * SK_Scalar1;
SkScalar yF = 50 * SK_Scalar1;
fWidth = xF - xA;
fHeight = yF - yA;
fRects[0].set(xB, yB, xE, yE);
fRectColors[0] = SK_ColorRED;
fRects[1].set(xA, yA, xD, yD);
fRectColors[1] = SK_ColorGREEN;
fRects[2].set(xC, yA, xF, yD);
fRectColors[2] = SK_ColorBLUE;
fRects[3].set(xA, yC, xD, yF);
fRectColors[3] = SK_ColorYELLOW;
fRects[4].set(xC, yC, xF, yF);
fRectColors[4] = SK_ColorCYAN;
fTotalWidth = kCols * fWidth + SK_Scalar1 * (kCols + 1) * kPadX;
fTotalHeight = kRows * fHeight + SK_Scalar1 * (kRows + 1) * kPadY;
SkRegion::Op ops[] = {
SkRegion::kDifference_Op,
SkRegion::kIntersect_Op,
SkRegion::kUnion_Op,
SkRegion::kXOR_Op,
SkRegion::kReverseDifference_Op,
SkRegion::kReplace_Op,
};
SkRandom r;
for (int i = 0; i < kRows; ++i) {
for (int j = 0; j < kCols; ++j) {
for (int k = 0; k < 5; ++k) {
fOps[j*kRows+i][k] = ops[r.nextU() % SK_ARRAY_COUNT(ops)];
}
}
}
}
protected:
static const int kRows = 5;
static const int kCols = 5;
static const int kPadX = 20;
static const int kPadY = 20;
virtual SkString onShortName() {
return SkString("complexclip2");
}
virtual SkISize onISize() {
return make_isize(SkScalarRoundToInt(fTotalWidth),
SkScalarRoundToInt(fTotalHeight));
}
virtual void onDraw(SkCanvas* canvas) {
SkPaint rectPaint;
rectPaint.setStyle(SkPaint::kStroke_Style);
rectPaint.setStrokeWidth(-1);
SkPaint fillPaint;
fillPaint.setColor(SkColorSetRGB(0xA0,0xDD,0xA0));
for (int i = 0; i < kRows; ++i) {
for (int j = 0; j < kCols; ++j) {
canvas->save();
canvas->translate(kPadX * SK_Scalar1 + (fWidth + kPadX * SK_Scalar1)*j,
kPadY * SK_Scalar1 + (fHeight + kPadY * SK_Scalar1)*i);
canvas->save();
for (int k = 0; k < 5; ++k) {
canvas->clipRect(fRects[k], fOps[j*kRows+i][k]);
}
canvas->drawRect(SkRect::MakeWH(fWidth, fHeight), fillPaint);
canvas->restore();
for (int k = 0; k < 5; ++k) {
rectPaint.setColor(fRectColors[k]);
canvas->drawRect(fRects[k], rectPaint);
}
canvas->restore();
}
}
}
private:
SkRect fRects[5];
SkColor fRectColors[5];
SkRegion::Op fOps[kRows * kCols][5];
SkScalar fWidth;
SkScalar fHeight;
SkScalar fTotalWidth;
SkScalar fTotalHeight;
typedef GM INHERITED;
};
//////////////////////////////////////////////////////////////////////////////
static GM* MyFactory(void*) { return new ComplexClip2GM; }
static GMRegistry reg(MyFactory);
}
|