From b7061176c7f414616fe2e79e832b3e0abe326af6 Mon Sep 17 00:00:00 2001 From: "robertphillips@google.com" Date: Fri, 6 Sep 2013 14:16:12 +0000 Subject: Push sigma-based blur interface into our GMs/benches/tests/samplecode https://codereview.chromium.org/23701006/ git-svn-id: http://skia.googlecode.com/svn/trunk@11129 2bbb7eff-a529-9590-31e7-b0007b416f81 --- samplecode/SampleTextOnPath.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'samplecode/SampleTextOnPath.cpp') diff --git a/samplecode/SampleTextOnPath.cpp b/samplecode/SampleTextOnPath.cpp index 2337a08d1d..bfb35f8159 100644 --- a/samplecode/SampleTextOnPath.cpp +++ b/samplecode/SampleTextOnPath.cpp @@ -6,6 +6,7 @@ * found in the LICENSE file. */ #include "SampleCode.h" +#include "SkBlurMask.h" #include "SkBlurDrawLooper.h" #include "SkCanvas.h" #include "SkPath.h" @@ -34,10 +35,10 @@ static void textStrokePath(SkCanvas* canvas) { canvas->drawPath(path, paint); - paint.setLooper(new SkBlurDrawLooper(SkFloatToScalar(0.002f), - SkFloatToScalar(0.0f), - SkFloatToScalar(0.0f), - (SkColor)0xFF000000))->unref(); + paint.setLooper(new SkBlurDrawLooper(SK_ColorBLACK, + SkBlurMask::ConvertRadiusToSigma(SkFloatToScalar(0.002f)), + SkFloatToScalar(0.0f), + SkFloatToScalar(0.0f)))->unref(); const char* text = "DRAWING STROKED TEXT WITH A BLUR ON A PATH"; size_t len = strlen(text); -- cgit v1.2.3