OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
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 | 9 |
10 #include "SkDrawEmboss.h" | 10 #include "SkDrawEmboss.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 DEFINE_GET_MEMBER(SkDrawEmboss); | 23 DEFINE_GET_MEMBER(SkDrawEmboss); |
24 | 24 |
25 SkDrawEmboss::SkDrawEmboss() : fSigma(-1) { | 25 SkDrawEmboss::SkDrawEmboss() : fSigma(-1) { |
26 fDirection.setCount(3); | 26 fDirection.setCount(3); |
27 } | 27 } |
28 | 28 |
29 SkMaskFilter* SkDrawEmboss::getMaskFilter() { | 29 SkMaskFilter* SkDrawEmboss::getMaskFilter() { |
30 if (fSigma < 0 || fDirection.count() !=3) | 30 if (fSigma < 0 || fDirection.count() !=3) |
31 return nullptr; | 31 return nullptr; |
32 return SkBlurMaskFilter::CreateEmboss(fSigma, fDirection.begin(), | 32 return SkBlurMaskFilter::MakeEmboss(fSigma, fDirection.begin(), |
33 fAmbient, fSpecular); | 33 fAmbient, fSpecular).release(); |
34 } | 34 } |
OLD | NEW |