| 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 #include "SampleCode.h" | 8 #include "SampleCode.h" |
| 9 #include "SkView.h" | 9 #include "SkView.h" |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| 11 #include "SkGradientShader.h" | 11 #include "SkGradientShader.h" |
| 12 #include "SkGraphics.h" | 12 #include "SkGraphics.h" |
| 13 #include "SkImageDecoder.h" | |
| 14 #include "SkPath.h" | 13 #include "SkPath.h" |
| 15 #include "SkRegion.h" | 14 #include "SkRegion.h" |
| 16 #include "SkShader.h" | 15 #include "SkShader.h" |
| 17 #include "SkUtils.h" | 16 #include "SkUtils.h" |
| 18 #include "SkXfermode.h" | 17 #include "SkXfermode.h" |
| 19 #include "SkColorPriv.h" | 18 #include "SkColorPriv.h" |
| 20 #include "SkColorFilter.h" | 19 #include "SkColorFilter.h" |
| 21 #include "SkTime.h" | 20 #include "SkTime.h" |
| 22 #include "SkTypeface.h" | 21 #include "SkTypeface.h" |
| 23 | 22 |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 ((MyClick*)click)->handleMove(); | 311 ((MyClick*)click)->handleMove(); |
| 313 this->inval(nullptr); | 312 this->inval(nullptr); |
| 314 return false; | 313 return false; |
| 315 } | 314 } |
| 316 | 315 |
| 317 private: | 316 private: |
| 318 typedef SampleView INHERITED; | 317 typedef SampleView INHERITED; |
| 319 }; | 318 }; |
| 320 DEF_SAMPLE( return new EdgeClipView; ) | 319 DEF_SAMPLE( return new EdgeClipView; ) |
| 321 | 320 |
| OLD | NEW |