| Index: src/effects/SkBlurMaskFilter.cpp
|
| diff --git a/src/effects/SkBlurMaskFilter.cpp b/src/effects/SkBlurMaskFilter.cpp
|
| index a1cee8eddf94b5b1c67e036ec7ea891cf1595273..f9760486d78013db1bc2d74814aa2c64c2d84f2d 100644
|
| --- a/src/effects/SkBlurMaskFilter.cpp
|
| +++ b/src/effects/SkBlurMaskFilter.cpp
|
| @@ -560,7 +560,7 @@ public:
|
| GrTexture *blurProfileTexture = NULL;
|
| int doubleProfileSize = SkScalarCeilToInt(12*sigma);
|
|
|
| - if (doubleProfileSize <= rect.width() || doubleProfileSize <= rect.height()) {
|
| + if (doubleProfileSize >= rect.width() || doubleProfileSize >= rect.height()) {
|
| // if the blur sigma is too large so the gaussian overlaps the whole
|
| // rect in either direction, fall back to CPU path for now.
|
|
|
|
|