2 * Copyright 2012 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
10 #include "SkGraphics.h"
12 #include "SkLayerDrawLooper.h"
13 #include "SkBlurMaskFilter.h"
15 static SkRect inset(const SkRect& r) {
17 rect.inset(r.width() / 8, r.height() / 8);
21 class PathInteriorGM : public skiagm::GM {
24 this->setBGColor(0xFFDDDDDD);
28 SkISize onISize() override {
29 return SkISize::Make(770, 770);
32 SkString onShortName() override {
33 return SkString("pathinterior");
36 void show(SkCanvas* canvas, const SkPath& path) {
38 paint.setAntiAlias(true);
42 bool hasInterior = path.hasRectangularInterior(&rect);
44 bool hasInterior = false;
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);
54 paint.setStyle(SkPaint::kFill_Style);
55 paint.setColor(0x8800FF00);
56 canvas->drawRect(rect, paint);
60 void onDraw(SkCanvas* canvas) override {
61 canvas->translate(8.5f, 8.5f);
63 const SkRect rect = { 0, 0, 80, 80 };
64 const SkScalar RAD = rect.width()/8;
67 for (int insetFirst = 0; insetFirst <= 1; ++insetFirst) {
68 for (int doEvenOdd = 0; doEvenOdd <= 1; ++doEvenOdd) {
69 for (int outerRR = 0; outerRR <= 1; ++outerRR) {
70 for (int innerRR = 0; innerRR <= 1; ++innerRR) {
71 for (int outerCW = 0; outerCW <= 1; ++outerCW) {
72 for (int innerCW = 0; innerCW <= 1; ++innerCW) {
74 path.setFillType(doEvenOdd ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType);
75 SkPath::Direction outerDir = outerCW ? SkPath::kCW_Direction : SkPath::kCCW_Direction;
76 SkPath::Direction innerDir = innerCW ? SkPath::kCW_Direction : SkPath::kCCW_Direction;
78 SkRect r = insetFirst ? inset(rect) : rect;
80 path.addRoundRect(r, RAD, RAD, outerDir);
82 path.addRect(r, outerDir);
84 r = insetFirst ? rect : inset(rect);
86 path.addRoundRect(r, RAD, RAD, innerDir);
88 path.addRect(r, innerDir);
91 SkScalar dx = (i / 8) * rect.width() * 6 / 5;
92 SkScalar dy = (i % 8) * rect.height() * 6 / 5;
96 this->show(canvas, path);
107 typedef GM INHERITED;
110 //////////////////////////////////////////////////////////////////////////////
112 static skiagm::GM* MyFactory(void*) { return new PathInteriorGM; }
113 static skiagm::GMRegistry reg(MyFactory);