egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 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 | #include "gm.h" |
Mike Klein | 33d2055 | 2017-03-22 13:47:51 -0400 | [diff] [blame] | 8 | #include "sk_tool_utils.h" |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 9 | #include "SkCanvas.h" |
| 10 | #include "SkPath.h" |
| 11 | |
Ben Wagner | f08d1d0 | 2018-06-18 15:11:00 -0400 | [diff] [blame] | 12 | #include <utility> |
| 13 | |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 14 | namespace skiagm { |
| 15 | |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 16 | constexpr SkColor gPathColor = SK_ColorYELLOW; |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 17 | |
| 18 | class ComplexClip3GM : public GM { |
| 19 | public: |
| 20 | ComplexClip3GM(bool doSimpleClipFirst) |
| 21 | : fDoSimpleClipFirst(doSimpleClipFirst) { |
caryclark | 65cdba6 | 2015-06-15 06:51:08 -0700 | [diff] [blame] | 22 | this->setBGColor(sk_tool_utils::color_to_565(0xFFDDDDDD)); |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 23 | } |
| 24 | |
| 25 | protected: |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 26 | |
| 27 | SkString onShortName() { |
| 28 | SkString str; |
| 29 | str.printf("complexclip3_%s", fDoSimpleClipFirst ? "simple" : "complex"); |
| 30 | return str; |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 31 | } |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 32 | |
| 33 | SkISize onISize() { return SkISize::Make(1000, 950); } |
| 34 | |
| 35 | virtual void onDraw(SkCanvas* canvas) { |
| 36 | SkPath clipSimple; |
| 37 | clipSimple.addCircle(SkIntToScalar(70), SkIntToScalar(50), SkIntToScalar(20)); |
| 38 | |
| 39 | SkRect r1 = { 10, 20, 70, 80 }; |
| 40 | SkPath clipComplex; |
| 41 | clipComplex.moveTo(SkIntToScalar(40), SkIntToScalar(50)); |
| 42 | clipComplex.arcTo(r1, SkIntToScalar(30), SkIntToScalar(300), false); |
| 43 | clipComplex.close(); |
| 44 | |
| 45 | SkPath* firstClip = &clipSimple; |
| 46 | SkPath* secondClip = &clipComplex; |
| 47 | |
| 48 | if (!fDoSimpleClipFirst) { |
Ben Wagner | f08d1d0 | 2018-06-18 15:11:00 -0400 | [diff] [blame] | 49 | using std::swap; |
| 50 | swap(firstClip, secondClip); |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | SkPaint paint; |
| 54 | paint.setAntiAlias(true); |
caryclark | 1818acb | 2015-07-24 12:09:25 -0700 | [diff] [blame] | 55 | sk_tool_utils::set_portable_typeface(&paint); |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 56 | paint.setTextSize(SkIntToScalar(20)); |
| 57 | |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 58 | constexpr struct { |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 59 | SkClipOp fOp; |
| 60 | const char* fName; |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 61 | } gOps[] = { |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 62 | {kIntersect_SkClipOp, "I"}, |
| 63 | {kDifference_SkClipOp, "D" }, |
| 64 | {kUnion_SkClipOp, "U"}, |
| 65 | {kXOR_SkClipOp, "X" }, |
| 66 | {kReverseDifference_SkClipOp, "R"} |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | canvas->translate(SkIntToScalar(20), SkIntToScalar(20)); |
| 70 | canvas->scale(3 * SK_Scalar1 / 4, 3 * SK_Scalar1 / 4); |
| 71 | |
| 72 | SkPaint pathPaint; |
| 73 | pathPaint.setAntiAlias(true); |
| 74 | pathPaint.setColor(gPathColor); |
| 75 | |
| 76 | for (int invA = 0; invA < 2; ++invA) { |
| 77 | for (int aaBits = 0; aaBits < 4; ++aaBits) { |
| 78 | canvas->save(); |
| 79 | for (size_t op = 0; op < SK_ARRAY_COUNT(gOps); ++op) { |
| 80 | for (int invB = 0; invB < 2; ++invB) { |
| 81 | bool doAAA = SkToBool(aaBits & 1); |
| 82 | bool doAAB = SkToBool(aaBits & 2); |
| 83 | bool doInvA = SkToBool(invA); |
| 84 | bool doInvB = SkToBool(invB); |
| 85 | canvas->save(); |
| 86 | // set clip |
| 87 | firstClip->setFillType(doInvA ? SkPath::kInverseEvenOdd_FillType : |
| 88 | SkPath::kEvenOdd_FillType); |
| 89 | secondClip->setFillType(doInvB ? SkPath::kInverseEvenOdd_FillType : |
| 90 | SkPath::kEvenOdd_FillType); |
reed | 6699838 | 2016-09-21 11:15:07 -0700 | [diff] [blame] | 91 | canvas->clipPath(*firstClip, doAAA); |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 92 | canvas->clipPath(*secondClip, gOps[op].fOp, doAAB); |
| 93 | |
| 94 | // draw rect clipped |
| 95 | SkRect r = { 0, 0, 100, 100 }; |
| 96 | canvas->drawRect(r, pathPaint); |
| 97 | canvas->restore(); |
| 98 | |
| 99 | |
| 100 | SkScalar txtX = SkIntToScalar(10); |
| 101 | paint.setColor(SK_ColorBLACK); |
| 102 | SkString str; |
| 103 | str.printf("%s%s %s %s%s", doAAA ? "A" : "B", |
| 104 | doInvA ? "I" : "N", |
| 105 | gOps[op].fName, |
| 106 | doAAB ? "A" : "B", |
| 107 | doInvB ? "I" : "N"); |
| 108 | |
Cary Clark | 2a475ea | 2017-04-28 15:35:12 -0400 | [diff] [blame] | 109 | canvas->drawString(str.c_str(), txtX, SkIntToScalar(130), paint); |
egdaniel | df79503 | 2014-12-17 11:22:37 -0800 | [diff] [blame] | 110 | if (doInvB) { |
| 111 | canvas->translate(SkIntToScalar(150),0); |
| 112 | } else { |
| 113 | canvas->translate(SkIntToScalar(120),0); |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | canvas->restore(); |
| 118 | canvas->translate(0, SkIntToScalar(150)); |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | private: |
| 124 | bool fDoSimpleClipFirst; |
| 125 | |
| 126 | typedef GM INHERITED; |
| 127 | }; |
| 128 | |
| 129 | ////////////////////////////////////////////////////////////////////////////// |
| 130 | |
| 131 | // Simple clip first |
| 132 | DEF_GM( return new ComplexClip3GM(true); ) |
| 133 | // Complex clip first |
| 134 | DEF_GM( return new ComplexClip3GM(false); ) |
| 135 | } |