| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #include "SampleCode.h" | 9 #include "SampleCode.h" |
| 10 #include "SkAAClip.h" |
| 11 #include "SkCanvas.h" |
| 12 #include "SkPath.h" |
| 10 #include "SkView.h" | 13 #include "SkView.h" |
| 11 #include "SkCanvas.h" | |
| 12 #include "SkAAClip.h" | |
| 13 | 14 |
| 14 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op, | 15 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op, |
| 15 const SkIRect& expectedR) { | 16 const SkIRect& expectedR) { |
| 16 SkAAClip c0, c1, c2; | 17 SkAAClip c0, c1, c2; |
| 17 c0.setRect(r0); | 18 c0.setRect(r0); |
| 18 c1.setRect(r1); | 19 c1.setRect(r1); |
| 19 c2.op(c0, c1, op); | 20 c2.op(c0, c1, op); |
| 20 | 21 |
| 21 SkDEBUGCODE(SkIRect r2 = c2.getBounds()); | 22 SkDEBUGCODE(SkIRect r2 = c2.getBounds()); |
| 22 SkASSERT(r2 == expectedR); | 23 SkASSERT(r2 == expectedR); |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 } | 117 } |
| 117 | 118 |
| 118 private: | 119 private: |
| 119 typedef SkView INHERITED; | 120 typedef SkView INHERITED; |
| 120 }; | 121 }; |
| 121 | 122 |
| 122 ////////////////////////////////////////////////////////////////////////////// | 123 ////////////////////////////////////////////////////////////////////////////// |
| 123 | 124 |
| 124 static SkView* MyFactory() { return new AAClipView; } | 125 static SkView* MyFactory() { return new AAClipView; } |
| 125 static SkViewRegister reg(MyFactory); | 126 static SkViewRegister reg(MyFactory); |
| OLD | NEW |