| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "gm.h" | 8 #include "gm.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkPath.h" | 10 #include "SkPath.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 fillPaint.setColor(0x80808080); | 53 fillPaint.setColor(0x80808080); |
| 54 canvas->save(); | 54 canvas->save(); |
| 55 canvas->scale(10, 10); | 55 canvas->scale(10, 10); |
| 56 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); | 56 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); |
| 57 canvas->clipPath(fCircle1, SkRegion::kReplace_Op, true); | 57 canvas->clipPath(fCircle1, SkRegion::kReplace_Op, true); |
| 58 canvas->clipPath(fCircle2, SkRegion::kIntersect_Op, true); | 58 canvas->clipPath(fCircle2, SkRegion::kIntersect_Op, true); |
| 59 | 59 |
| 60 canvas->drawRect(rect, fillPaint); | 60 canvas->drawRect(rect, fillPaint); |
| 61 | 61 |
| 62 canvas->restore(); | 62 canvas->restore(); |
| 63 | 63 |
| 64 fillPaint.setColor(0xFF000000); | 64 fillPaint.setColor(0xFF000000); |
| 65 | 65 |
| 66 for (size_t i = 0; i < 4; i++) { | 66 for (size_t i = 0; i < 4; i++) { |
| 67 fCircle1.toggleInverseFillType(); | 67 fCircle1.toggleInverseFillType(); |
| 68 if (i % 2 == 0) { | 68 if (i % 2 == 0) { |
| 69 fCircle2.toggleInverseFillType(); | 69 fCircle2.toggleInverseFillType(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 canvas->save(); | 72 canvas->save(); |
| 73 for (size_t op = 0; op < SK_ARRAY_COUNT(ops); op++) { | 73 for (size_t op = 0; op < SK_ARRAY_COUNT(ops); op++) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 86 } | 86 } |
| 87 } | 87 } |
| 88 | 88 |
| 89 private: | 89 private: |
| 90 typedef skiagm::GM INHERITED; | 90 typedef skiagm::GM INHERITED; |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 ////////////////////////////////////////////////////////////////////////////// | 93 ////////////////////////////////////////////////////////////////////////////// |
| 94 | 94 |
| 95 DEF_GM( return new CircularClipsGM; ) | 95 DEF_GM( return new CircularClipsGM; ) |
| OLD | NEW |