| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 #ifndef SkTwoPointConicalGradient_gpu_DEFINED | 8 #ifndef SkTwoPointConicalGradient_gpu_DEFINED |
| 9 #define SkTwoPointConicalGradient_gpu_DEFINED | 9 #define SkTwoPointConicalGradient_gpu_DEFINED |
| 10 | 10 |
| 11 #include "SkGradientShaderPriv.h" | 11 #include "SkGradientShaderPriv.h" |
| 12 | 12 |
| 13 class GrProcessor; | 13 class GrProcessor; |
| 14 class SkTwoPointConicalGradient; | 14 class SkTwoPointConicalGradient; |
| 15 | 15 |
| 16 namespace Gr2PtConicalGradientEffect { | 16 namespace Gr2PtConicalGradientEffect { |
| 17 /** | 17 /** |
| 18 * Creates an effect that produces a two point conical gradient based on the | 18 * Creates an effect that produces a two point conical gradient based on the |
| 19 * shader passed in. | 19 * shader passed in. |
| 20 */ | 20 */ |
| 21 GrFragmentProcessor* Create(GrContext* ctx, const SkTwoPointConicalGradient
& shader, | 21 sk_sp<GrFragmentProcessor> Make(GrContext* ctx, const SkTwoPointConicalGrad
ient& shader, |
| 22 SkShader::TileMode tm, const SkMatrix* localMatr
ix); | 22 SkShader::TileMode tm, const SkMatrix* local
Matrix); |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 #endif | 25 #endif |
| OLD | NEW |