Fix spelling error.
authorbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 24 Jan 2013 19:00:02 +0000 (19:00 +0000)
committerbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 24 Jan 2013 19:00:02 +0000 (19:00 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@7376 2bbb7eff-a529-9590-31e7-b0007b416f81

src/gpu/GrContext.cpp
src/gpu/effects/GrConvolutionEffect.h

index 4bd4893..4641583 100644 (file)
@@ -200,7 +200,7 @@ void convolve_gaussian(GrDrawTarget* target,
     GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kReset_ASRInit);
     GrDrawState* drawState = target->drawState();
     drawState->setRenderTarget(rt);
-    SkAutoTUnref<GrEffectRef> conv(GrConvolutionEffect::CreateGuassian(texture,
+    SkAutoTUnref<GrEffectRef> conv(GrConvolutionEffect::CreateGaussian(texture,
                                                                        direction,
                                                                        radius,
                                                                        sigma));
index 0724048..b2b24e5 100644 (file)
@@ -31,7 +31,7 @@ public:
     }
 
     /// Convolve with a Gaussian kernel
-    static GrEffectRef* CreateGuassian(GrTexture* tex,
+    static GrEffectRef* CreateGaussian(GrTexture* tex,
                                        Direction dir,
                                        int halfWidth,
                                        float gaussianSigma) {