Warnings as errors fix for r9554

git-svn-id: http://skia.googlecode.com/svn/trunk@9556 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
robertphillips@google.com 2013-06-12 22:34:15 +00:00
parent b1b3d5122e
commit dd5d46256d

View File

@ -38,10 +38,10 @@ static const SkPoint linearPts[][2] = {
}; };
static const SkPoint radialPts[][2] = { static const SkPoint radialPts[][2] = {
{{0, 0.5}, {1, 0.5}}, {{0, 0.5f}, {1, 0.5f}},
{{0.5, 0 }, {0.5, 1 }}, {{0.5, 0 }, {0.5, 1 }},
{{1, 0.5}, {0, 0.5}}, {{1, 0.5f}, {0, 0.5f}},
{{0.5, 1 }, {0.5, 0 }}, {{0.5f, 1 }, {0.5f, 0 }},
{{0, 0}, {1, 1}}, {{0, 0}, {1, 1}},
{{1, 1}, {0, 0}}, {{1, 1}, {0, 0}},