Index: src/gpu/effects/GrConvolutionEffect.cpp |
diff --git a/src/gpu/effects/GrConvolutionEffect.cpp b/src/gpu/effects/GrConvolutionEffect.cpp |
index 9776a2af5f67e65eb7e05848541cc29bfc3b3813..310e531affefd0aa38781cb4d6de51f298e94291 100644 |
--- a/src/gpu/effects/GrConvolutionEffect.cpp |
+++ b/src/gpu/effects/GrConvolutionEffect.cpp |
@@ -202,8 +202,7 @@ const GrBackendFragmentProcessorFactory& GrConvolutionEffect::getFactory() const |
bool GrConvolutionEffect::onIsEqual(const GrFragmentProcessor& sBase) const { |
const GrConvolutionEffect& s = sBase.cast<GrConvolutionEffect>(); |
- return (this->texture(0) == s.texture(0) && |
- this->radius() == s.radius() && |
+ return (this->radius() == s.radius() && |
this->direction() == s.direction() && |
this->useBounds() == s.useBounds() && |
0 == memcmp(fBounds, s.fBounds, sizeof(fBounds)) && |