blob: fbae9f68be7345589ec72c912ad95968084c3e75 [file] [log] [blame]
reed@google.comb1c88272012-12-04 22:52:28 +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"
9#include "SkCanvas.h"
10#include "SkGraphics.h"
11#include "SkRandom.h"
12#include "SkLayerDrawLooper.h"
13#include "SkBlurMaskFilter.h"
14
15static SkRect inset(const SkRect& r) {
16 SkRect rect = r;
17 rect.inset(r.width() / 8, r.height() / 8);
18 return rect;
19}
20
21class PathInteriorGM : public skiagm::GM {
22public:
23 PathInteriorGM() {
24 this->setBGColor(0xFFDDDDDD);
25 }
26
27protected:
28 virtual SkISize onISize() {
29 return SkISize::Make(960, 480);
30 }
31
32 virtual SkString onShortName() SK_OVERRIDE {
33 return SkString("pathinterior");
34 }
35
36 void show(SkCanvas* canvas, const SkPath& path) {
37 SkPaint paint;
38 paint.setAntiAlias(true);
39
40 SkRect rect;
41#if 0
42 bool hasInterior = path.hasRectangularInterior(&rect);
43#else
44 bool hasInterior = false;
45#endif
46
47 paint.setColor(hasInterior ? 0xFF8888FF : SK_ColorGRAY);
48 canvas->drawPath(path, paint);
49 paint.setStyle(SkPaint::kStroke_Style);
50 paint.setColor(SK_ColorRED);
51 canvas->drawPath(path, paint);
skia.committer@gmail.com73b140a2012-12-05 02:01:21 +000052
reed@google.comb1c88272012-12-04 22:52:28 +000053 if (hasInterior) {
54 paint.setStyle(SkPaint::kFill_Style);
55 paint.setColor(0x8800FF00);
56 canvas->drawRect(rect, paint);
57 }
58 }
59
60 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
61 canvas->translate(8, 8);
62
63 const SkRect rect = { 0, 0, 100, 100 };
64 const SkScalar RAD = rect.width()/8;
65
66 int i = 0;
67 for (int doEvenOdd = 0; doEvenOdd <= 1; ++doEvenOdd) {
68 for (int outerRR = 0; outerRR <= 1; ++outerRR) {
69 for (int innerRR = 0; innerRR <= 1; ++innerRR) {
70 for (int outerCW = 0; outerCW <= 1; ++outerCW) {
71 for (int innerCW = 0; innerCW <= 1; ++innerCW) {
72 SkPath path;
73 path.setFillType(doEvenOdd ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType);
74 SkPath::Direction outerDir = outerCW ? SkPath::kCW_Direction : SkPath::kCCW_Direction;
75 SkPath::Direction innerDir = innerCW ? SkPath::kCW_Direction : SkPath::kCCW_Direction;
76 if (outerRR) {
77 path.addRoundRect(rect, RAD, RAD, outerDir);
78 } else {
79 path.addRect(rect, outerDir);
80 }
81 SkRect inner = inset(rect);
82 if (innerRR) {
83 path.addRoundRect(inner, RAD, RAD, innerDir);
84 } else {
85 path.addRect(inner, innerDir);
86 }
87
88 SkScalar dx = (i / 4) * rect.width() * 6 / 5;
89 SkScalar dy = (i % 4) * rect.height() * 6 / 5;
90 i++;
91 path.offset(dx, dy);
skia.committer@gmail.com73b140a2012-12-05 02:01:21 +000092
reed@google.comb1c88272012-12-04 22:52:28 +000093 this->show(canvas, path);
94 }
95 }
96 }
97 }
98 }
99 }
100
101private:
102
103 typedef GM INHERITED;
104};
105
106//////////////////////////////////////////////////////////////////////////////
107
108static skiagm::GM* MyFactory(void*) { return new PathInteriorGM; }
109static skiagm::GMRegistry reg(MyFactory);
110