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 "SkBlurMaskFilter.h" | 9 #include "SkBlurMaskFilter.h" |
10 #include "SkColorFilter.h" | 10 #include "SkColorFilter.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 drawPath.close(); | 57 drawPath.close(); |
58 drawPath.setFillType(SkPath::kEvenOdd_FillType); | 58 drawPath.setFillType(SkPath::kEvenOdd_FillType); |
59 | 59 |
60 SkPaint paint; | 60 SkPaint paint; |
61 paint.setAntiAlias(true); | 61 paint.setAntiAlias(true); |
62 paint.setColor(0xFF000000); | 62 paint.setColor(0xFF000000); |
63 paint.setMaskFilter( | 63 paint.setMaskFilter( |
64 SkBlurMaskFilter::Create(kNormal_SkBlurStyle, | 64 SkBlurMaskFilter::Create(kNormal_SkBlurStyle, |
65 0.78867501f, | 65 0.78867501f, |
66 SkBlurMaskFilter::kHighQuality_BlurFlag))->
unref(); | 66 SkBlurMaskFilter::kHighQuality_BlurFlag))->
unref(); |
67 paint.setColorFilter( | 67 paint.setColorFilter(SkColorFilter::MakeModeFilter(0xBFFFFFFF, SkXfermod
e::kSrcIn_Mode)); |
68 SkColorFilter::CreateModeFilter(0xBFFFFFFF, SkXfermode::kSrcIn_Mode)
)->unref(); | |
69 | 68 |
70 canvas->clipPath(clipPath, SkRegion::kIntersect_Op, true); | 69 canvas->clipPath(clipPath, SkRegion::kIntersect_Op, true); |
71 canvas->drawPath(drawPath, paint); | 70 canvas->drawPath(drawPath, paint); |
72 } | 71 } |
OLD | NEW |