| 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 "SkAnimTimer.h" | 10 #include "SkAnimTimer.h" |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 const SkScalar rad = 50; | 247 const SkScalar rad = 50; |
| 248 | 248 |
| 249 fPtsPaint.setAntiAlias(true); | 249 fPtsPaint.setAntiAlias(true); |
| 250 fPtsPaint.setStrokeWidth(15); | 250 fPtsPaint.setStrokeWidth(15); |
| 251 fPtsPaint.setStrokeCap(SkPaint::kRound_Cap); | 251 fPtsPaint.setStrokeCap(SkPaint::kRound_Cap); |
| 252 | 252 |
| 253 fArcToPaint.setAntiAlias(true); | 253 fArcToPaint.setAntiAlias(true); |
| 254 fArcToPaint.setStyle(SkPaint::kStroke_Style); | 254 fArcToPaint.setStyle(SkPaint::kStroke_Style); |
| 255 fArcToPaint.setStrokeWidth(9); | 255 fArcToPaint.setStrokeWidth(9); |
| 256 fArcToPaint.setColor(0x800000FF); | 256 fArcToPaint.setColor(0x800000FF); |
| 257 fArcToPaint.setPathEffect(SkArcToPathEffect::Make(rad)); | 257 fArcToPaint.setPathEffect(SkArcToPathEffect::Create(rad))->unref(); |
| 258 | 258 |
| 259 fCornerPaint.setAntiAlias(true); | 259 fCornerPaint.setAntiAlias(true); |
| 260 fCornerPaint.setStyle(SkPaint::kStroke_Style); | 260 fCornerPaint.setStyle(SkPaint::kStroke_Style); |
| 261 fCornerPaint.setStrokeWidth(13); | 261 fCornerPaint.setStrokeWidth(13); |
| 262 fCornerPaint.setColor(SK_ColorGREEN); | 262 fCornerPaint.setColor(SK_ColorGREEN); |
| 263 fCornerPaint.setPathEffect(SkCornerPathEffect::Make(rad*2)); | 263 fCornerPaint.setPathEffect(SkCornerPathEffect::Create(rad*2))->unref(); |
| 264 | 264 |
| 265 fSkeletonPaint.setAntiAlias(true); | 265 fSkeletonPaint.setAntiAlias(true); |
| 266 fSkeletonPaint.setStyle(SkPaint::kStroke_Style); | 266 fSkeletonPaint.setStyle(SkPaint::kStroke_Style); |
| 267 fSkeletonPaint.setColor(SK_ColorRED); | 267 fSkeletonPaint.setColor(SK_ColorRED); |
| 268 } | 268 } |
| 269 | 269 |
| 270 void toggle(bool& value) { | 270 void toggle(bool& value) { |
| 271 value = !value; | 271 value = !value; |
| 272 this->inval(nullptr); | 272 this->inval(nullptr); |
| 273 } | 273 } |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 } | 340 } |
| 341 } | 341 } |
| 342 return this->INHERITED::onFindClickHandler(x, y, modi); | 342 return this->INHERITED::onFindClickHandler(x, y, modi); |
| 343 } | 343 } |
| 344 | 344 |
| 345 private: | 345 private: |
| 346 typedef SampleView INHERITED; | 346 typedef SampleView INHERITED; |
| 347 }; | 347 }; |
| 348 DEF_SAMPLE( return new ArcToView; ) | 348 DEF_SAMPLE( return new ArcToView; ) |
| 349 | 349 |
| OLD | NEW |