Index: src/gpu/effects/GrConvolutionEffect.h |
diff --git a/src/gpu/effects/GrConvolutionEffect.h b/src/gpu/effects/GrConvolutionEffect.h |
index 77c2d347c686d48c0fc8c3c4ad5dddc7c77b4793..a96ea7be86c880e9414bdb3ee8ebcf2eb844075e 100644 |
--- a/src/gpu/effects/GrConvolutionEffect.h |
+++ b/src/gpu/effects/GrConvolutionEffect.h |
@@ -22,12 +22,12 @@ class GrConvolutionEffect : public Gr1DKernelEffect { |
public: |
/// Convolve with an arbitrary user-specified kernel |
- static GrEffectRef* Create(GrTexture* tex, |
- Direction dir, |
- int halfWidth, |
- const float* kernel, |
- bool useBounds, |
- float bounds[2]) { |
+ static GrEffect* Create(GrTexture* tex, |
+ Direction dir, |
+ int halfWidth, |
+ const float* kernel, |
+ bool useBounds, |
+ float bounds[2]) { |
return SkNEW_ARGS(GrConvolutionEffect, (tex, |
dir, |
halfWidth, |
@@ -37,12 +37,12 @@ public: |
} |
/// Convolve with a Gaussian kernel |
- static GrEffectRef* CreateGaussian(GrTexture* tex, |
- Direction dir, |
- int halfWidth, |
- float gaussianSigma, |
- bool useBounds, |
- float bounds[2]) { |
+ static GrEffect* CreateGaussian(GrTexture* tex, |
+ Direction dir, |
+ int halfWidth, |
+ float gaussianSigma, |
+ bool useBounds, |
+ float bounds[2]) { |
return SkNEW_ARGS(GrConvolutionEffect, (tex, |
dir, |
halfWidth, |