aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/DrawBitmapRectTest.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-14 16:33:36 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-14 16:33:36 +0000
commit4debcac8c38cae17a01e697578719c60a068052f (patch)
treefe0f4e1b11fa773d8ce0eb446cb5912d8e055eea /tests/DrawBitmapRectTest.cpp
parent59bc8d4fa725da2a6cec3526859c488b577d5cce (diff)
Debug Windows compiler complaint fixes
Diffstat (limited to 'tests/DrawBitmapRectTest.cpp')
-rw-r--r--tests/DrawBitmapRectTest.cpp20
1 files changed, 14 insertions, 6 deletions
diff --git a/tests/DrawBitmapRectTest.cpp b/tests/DrawBitmapRectTest.cpp
index 084bdf290e..e11acbc95e 100644
--- a/tests/DrawBitmapRectTest.cpp
+++ b/tests/DrawBitmapRectTest.cpp
@@ -41,9 +41,13 @@ static void test_wacky_bitmapshader(skiatest::Reporter* reporter,
SkMatrix matrix;
SkCanvas c(dev);
- matrix.setAll(-119.34097, -43.436558, 93489.945,
- 43.436558, -119.34097, 123.98426,
- 0, 0, 1);
+ matrix.setAll(SkFloatToScalar(-119.34097f),
+ SkFloatToScalar(-43.436558f),
+ SkFloatToScalar(93489.945f),
+ SkFloatToScalar(43.436558f),
+ SkFloatToScalar(-119.34097f),
+ SkFloatToScalar(123.98426f),
+ 0, 0, SK_Scalar1);
c.concat(matrix);
SkBitmap bm;
@@ -53,9 +57,13 @@ static void test_wacky_bitmapshader(skiatest::Reporter* reporter,
SkShader* s = SkShader::CreateBitmapShader(bm, SkShader::kRepeat_TileMode,
SkShader::kRepeat_TileMode);
- matrix.setAll(0.0078740157, 0, 249,
- 0, 0.0078740157, 239,
- 0, 0, 1);
+ matrix.setAll(SkFloatToScalar(0.0078740157f),
+ 0,
+ SkIntToScalar(249),
+ 0,
+ SkFloatToScalar(0.0078740157f),
+ SkIntToScalar(239),
+ 0, 0, SK_Scalar1);
s->setLocalMatrix(matrix);
SkPaint paint;