aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/blurroundrect.cpp
diff options
context:
space:
mode:
authorGravatar scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-05 17:29:23 +0000
committerGravatar scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-05 17:29:23 +0000
commit9d3c422ea673ad5d19d817d320687458d5f3a893 (patch)
tree43b0c0a892ec83bf10629342050842969a4b3b15 /gm/blurroundrect.cpp
parentec1a96c317b8a34a962cecb459325ad424edbc20 (diff)
Int to scalar (again)
git-svn-id: http://skia.googlecode.com/svn/trunk@12139 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/blurroundrect.cpp')
-rw-r--r--gm/blurroundrect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gm/blurroundrect.cpp b/gm/blurroundrect.cpp
index 5673de10c6..5a2fa01db7 100644
--- a/gm/blurroundrect.cpp
+++ b/gm/blurroundrect.cpp
@@ -169,7 +169,7 @@ protected:
// Handle the scaling.
this->INHERITED::onDraw(canvas);
canvas->translate(SkIntToScalar(10), SkIntToScalar(10));
- SkMaskFilter* filter = SkBlurMaskFilter::Create(fBlurRadius,
+ SkMaskFilter* filter = SkBlurMaskFilter::Create(SkIntToScalar(fBlurRadius),
SkBlurMaskFilter::kNormal_BlurStyle);
SkPaint paint;
paint.setColor(SK_ColorBLUE);