Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eabcc912 authored by Victoria Lease's avatar Victoria Lease Committed by Android (Google) Code Review
Browse files

Merge "fix argument order in call to SkBlurDrawLooper constructor"

parents c9550f2c 49f0db34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -853,7 +853,7 @@ public:
        }
        else {
            SkScalar sigma = android::uirenderer::Blur::convertRadiusToSigma(radius);
            paint->setLooper(new SkBlurDrawLooper((SkColor)color, sigma, dx, dy))->unref();
            paint->setLooper(SkBlurDrawLooper::Create((SkColor)color, sigma, dx, dy))->unref();
        }
    }