reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 7 | |
| 8 | #include "SampleCode.h" |
reed | fb8c1fc | 2015-08-04 18:44:56 -0700 | [diff] [blame] | 9 | #include "SkAAClip.h" |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 10 | #include "SkCanvas.h" |
| 11 | #include "SkPath.h" |
| 12 | #include "SkView.h" |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 13 | |
reed@google.com | c904191 | 2011-10-27 16:58:46 +0000 | [diff] [blame] | 14 | static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op, |
| 15 | const SkIRect& expectedR) { |
| 16 | SkAAClip c0, c1, c2; |
| 17 | c0.setRect(r0); |
| 18 | c1.setRect(r1); |
| 19 | c2.op(c0, c1, op); |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 20 | |
humper@google.com | 0e51577 | 2013-01-07 19:54:40 +0000 | [diff] [blame] | 21 | SkDEBUGCODE(SkIRect r2 = c2.getBounds()); |
reed@google.com | c904191 | 2011-10-27 16:58:46 +0000 | [diff] [blame] | 22 | SkASSERT(r2 == expectedR); |
| 23 | } |
| 24 | |
| 25 | static const struct { |
| 26 | SkIRect r0; |
| 27 | SkIRect r1; |
| 28 | SkRegion::Op op; |
| 29 | SkIRect expectedR; |
| 30 | } gRec[] = { |
| 31 | {{ 1, 2, 9, 3 }, { -3, 2, 5, 11 }, SkRegion::kDifference_Op, { 5, 2, 9, 3 }}, |
| 32 | {{ 1, 10, 5, 13 }, { 1, 2, 5, 11 }, SkRegion::kDifference_Op, { 1, 11, 5, 13 }}, |
| 33 | {{ 1, 10, 5, 13 }, { 1, 2, 5, 11 }, SkRegion::kReverseDifference_Op, { 1, 2, 5, 10 }}, |
| 34 | }; |
| 35 | |
| 36 | static void testop() { |
| 37 | for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) { |
| 38 | testop(gRec[i].r0, gRec[i].r1, gRec[i].op, gRec[i].expectedR); |
| 39 | } |
| 40 | } |
| 41 | |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 42 | static void drawClip(SkCanvas* canvas, const SkAAClip& clip) { |
| 43 | SkMask mask; |
| 44 | SkBitmap bm; |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 45 | |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 46 | clip.copyToMask(&mask); |
reed@google.com | 045e62d | 2011-10-24 12:19:46 +0000 | [diff] [blame] | 47 | SkAutoMaskFreeImage amfi(mask.fImage); |
| 48 | |
commit-bot@chromium.org | dac5225 | 2014-02-17 21:21:46 +0000 | [diff] [blame] | 49 | bm.installMaskPixels(mask); |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 50 | |
| 51 | SkPaint paint; |
bsalomon@google.com | 820e80a | 2011-10-24 21:09:40 +0000 | [diff] [blame] | 52 | canvas->drawBitmap(bm, |
| 53 | SK_Scalar1 * mask.fBounds.fLeft, |
| 54 | SK_Scalar1 * mask.fBounds.fTop, |
| 55 | &paint); |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | class AAClipView : public SampleView { |
| 59 | public: |
| 60 | AAClipView() { |
reed@google.com | c904191 | 2011-10-27 16:58:46 +0000 | [diff] [blame] | 61 | testop(); |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | protected: |
| 65 | // overrides from SkEventSink |
| 66 | virtual bool onQuery(SkEvent* evt) { |
| 67 | if (SampleCode::TitleQ(*evt)) { |
| 68 | SampleCode::TitleR(evt, "AAClip"); |
| 69 | return true; |
| 70 | } |
| 71 | return this->INHERITED::onQuery(evt); |
| 72 | } |
| 73 | |
| 74 | virtual void onDrawContent(SkCanvas* canvas) { |
| 75 | #if 1 |
| 76 | SkAAClip aaclip; |
| 77 | SkPath path; |
| 78 | SkRect bounds; |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 79 | |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 80 | bounds.set(0, 0, 20, 20); |
| 81 | bounds.inset(SK_ScalarHalf, SK_ScalarHalf); |
| 82 | |
| 83 | // path.addRect(bounds); |
| 84 | // path.addOval(bounds); |
| 85 | path.addRoundRect(bounds, 4, 4); |
| 86 | aaclip.setPath(path); |
| 87 | canvas->translate(30, 30); |
| 88 | drawClip(canvas, aaclip); |
| 89 | |
| 90 | SkAAClip aaclip2; |
| 91 | path.offset(10, 10); |
| 92 | aaclip2.setPath(path); |
| 93 | canvas->translate(30, 0); |
| 94 | drawClip(canvas, aaclip2); |
| 95 | |
| 96 | SkAAClip aaclip3; |
| 97 | aaclip3.op(aaclip, aaclip2, SkRegion::kIntersect_Op); |
| 98 | canvas->translate(30, 0); |
| 99 | drawClip(canvas, aaclip3); |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 100 | |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 101 | #endif |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 102 | |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 103 | #if 0 |
| 104 | SkRect r; |
| 105 | r.set(0, 0, this->width(), this->height()); |
| 106 | r.inset(20, 20); |
| 107 | canvas->clipRect(r); |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 108 | |
reed@google.com | 3228789 | 2011-10-05 16:27:44 +0000 | [diff] [blame] | 109 | SkPath path; |
| 110 | path.addRect(r); |
| 111 | SkPaint paint; |
| 112 | paint.setAntiAlias(true); |
| 113 | paint.setColor(SK_ColorRED); |
| 114 | canvas->drawPath(path, paint); |
| 115 | #endif |
| 116 | } |
| 117 | |
| 118 | private: |
| 119 | typedef SkView INHERITED; |
| 120 | }; |
| 121 | |
| 122 | ////////////////////////////////////////////////////////////////////////////// |
| 123 | |
| 124 | static SkView* MyFactory() { return new AAClipView; } |
| 125 | static SkViewRegister reg(MyFactory); |