aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-05 07:01:19 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-05 07:01:19 +0000
commitc3723db387a257a2b8beba1a515df355cd70d06a (patch)
treedd7c5b669ee452f337a1f8f9849907d147c5e34b /src
parentd1af237d7d52e23bc08ccaf73eddaadddeab6758 (diff)
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@11092 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src')
-rw-r--r--src/gpu/effects/GrBicubicEffect.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gpu/effects/GrBicubicEffect.h b/src/gpu/effects/GrBicubicEffect.h
index 618ef1a779..0a408916f1 100644
--- a/src/gpu/effects/GrBicubicEffect.h
+++ b/src/gpu/effects/GrBicubicEffect.h
@@ -33,7 +33,7 @@ public:
return CreateEffectRef(effect);
}
- static GrEffectRef* Create(GrTexture* tex, const SkScalar coefficients[16],
+ static GrEffectRef* Create(GrTexture* tex, const SkScalar coefficients[16],
const SkMatrix& matrix,
const GrTextureParams& p,
CoordsType coordsType = kLocal_CoordsType) {
@@ -45,7 +45,7 @@ public:
return Create(tex, gMitchellCoefficients);
}
- static GrEffectRef* Create(GrTexture* tex,
+ static GrEffectRef* Create(GrTexture* tex,
const SkMatrix& matrix,
const GrTextureParams& p,
CoordsType coordsType = kLocal_CoordsType) {
@@ -54,13 +54,13 @@ public:
private:
GrBicubicEffect(GrTexture*, const SkScalar coefficients[16]);
- GrBicubicEffect(GrTexture*, const SkScalar coefficients[16],
+ GrBicubicEffect(GrTexture*, const SkScalar coefficients[16],
const SkMatrix &matrix, const GrTextureParams &p, CoordsType coordsType);
virtual bool onIsEqual(const GrEffect&) const SK_OVERRIDE;
float fCoefficients[16];
GR_DECLARE_EFFECT_TEST;
-
+
static const SkScalar gMitchellCoefficients[16];
typedef GrSingleTextureEffect INHERITED;