| Index: src/gpu/effects/GrBicubicEffect.cpp
|
| diff --git a/src/gpu/effects/GrBicubicEffect.cpp b/src/gpu/effects/GrBicubicEffect.cpp
|
| index dedb92740fef2377717cc6a771b78f8d7848ed30..ba8eff3273f9da1268471c90c0de9e8c11e7c209 100644
|
| --- a/src/gpu/effects/GrBicubicEffect.cpp
|
| +++ b/src/gpu/effects/GrBicubicEffect.cpp
|
| @@ -152,12 +152,12 @@ GrBicubicEffect::GrBicubicEffect(GrTexture* texture,
|
| GrBicubicEffect::~GrBicubicEffect() {
|
| }
|
|
|
| -void GrBicubicEffect::onGetGLProcessorKey(const GrGLSLCaps& caps,
|
| - GrProcessorKeyBuilder* b) const {
|
| +void GrBicubicEffect::onGetGLSLProcessorKey(const GrGLSLCaps& caps,
|
| + GrProcessorKeyBuilder* b) const {
|
| GrGLBicubicEffect::GenKey(*this, caps, b);
|
| }
|
|
|
| -GrGLSLFragmentProcessor* GrBicubicEffect::onCreateGLInstance() const {
|
| +GrGLSLFragmentProcessor* GrBicubicEffect::onCreateGLSLInstance() const {
|
| return new GrGLBicubicEffect(*this);
|
| }
|
|
|
|
|