| Index: src/gpu/effects/GrBicubicEffect.cpp
|
| diff --git a/src/gpu/effects/GrBicubicEffect.cpp b/src/gpu/effects/GrBicubicEffect.cpp
|
| index 2857641edcfb708be45ccfdfcaad05277ca5db56..dedb92740fef2377717cc6a771b78f8d7848ed30 100644
|
| --- a/src/gpu/effects/GrBicubicEffect.cpp
|
| +++ b/src/gpu/effects/GrBicubicEffect.cpp
|
| @@ -21,7 +21,7 @@ const SkScalar GrBicubicEffect::gMitchellCoefficients[16] = {
|
| };
|
|
|
|
|
| -class GrGLBicubicEffect : public GrGLFragmentProcessor {
|
| +class GrGLBicubicEffect : public GrGLSLFragmentProcessor {
|
| public:
|
| GrGLBicubicEffect(const GrProcessor&);
|
|
|
| @@ -43,7 +43,7 @@ private:
|
| UniformHandle fImageIncrementUni;
|
| GrTextureDomain::GLDomain fDomain;
|
|
|
| - typedef GrGLFragmentProcessor INHERITED;
|
| + typedef GrGLSLFragmentProcessor INHERITED;
|
| };
|
|
|
| GrGLBicubicEffect::GrGLBicubicEffect(const GrProcessor&) {
|
| @@ -157,7 +157,7 @@ void GrBicubicEffect::onGetGLProcessorKey(const GrGLSLCaps& caps,
|
| GrGLBicubicEffect::GenKey(*this, caps, b);
|
| }
|
|
|
| -GrGLFragmentProcessor* GrBicubicEffect::onCreateGLInstance() const {
|
| +GrGLSLFragmentProcessor* GrBicubicEffect::onCreateGLInstance() const {
|
| return new GrGLBicubicEffect(*this);
|
| }
|
|
|
|
|