aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/RoundRectTest.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-03 17:35:19 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-03 17:35:19 +0000
commit93f03324189f211db95c312b3cb08b435cc5ac34 (patch)
tree0eb0f4c0c62ce4cdff52d98c54334a0094d3cc5d /tests/RoundRectTest.cpp
parent08cb7286c6fe50ceaabc15a16f0020d808390f43 (diff)
Fixed remaining clang compiler warnings
Diffstat (limited to 'tests/RoundRectTest.cpp')
-rw-r--r--tests/RoundRectTest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/RoundRectTest.cpp b/tests/RoundRectTest.cpp
index a358c5a66f..e88ed8ad8b 100644
--- a/tests/RoundRectTest.cpp
+++ b/tests/RoundRectTest.cpp
@@ -136,7 +136,7 @@ static void test_round_rect_rects(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, SkRRect::kRect_Type == rr1.type());
r = rr1.rect();
REPORTER_ASSERT(reporter, rect == r);
- for (int i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
+ for (size_t i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
REPORTER_ASSERT(reporter, isIn[i] == rr1.contains(pts[i].fX, pts[i].fY));
}
@@ -149,7 +149,7 @@ static void test_round_rect_rects(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, SkRRect::kRect_Type == rr2.type());
r = rr2.rect();
REPORTER_ASSERT(reporter, rect == r);
- for (int i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
+ for (size_t i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
REPORTER_ASSERT(reporter, isIn[i] == rr2.contains(pts[i].fX, pts[i].fY));
}
@@ -195,7 +195,7 @@ static void test_round_rect_ovals(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, SkRRect::kOval_Type == rr1.type());
oval = rr1.rect();
REPORTER_ASSERT(reporter, oval == rect);
- for (int i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
+ for (size_t i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
REPORTER_ASSERT(reporter, isIn[i] == rr1.contains(pts[i].fX, pts[i].fY));
}
}
@@ -230,7 +230,7 @@ static void test_round_rect_general(skiatest::Reporter* reporter) {
rr1.setRectXY(rect, 20, 20);
REPORTER_ASSERT(reporter, SkRRect::kSimple_Type == rr1.type());
- for (int i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
+ for (size_t i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
REPORTER_ASSERT(reporter, isIn[i] == rr1.contains(pts[i].fX, pts[i].fY));
}
@@ -261,7 +261,7 @@ static void test_round_rect_general(skiatest::Reporter* reporter) {
rr2.setRectRadii(rect, radii);
REPORTER_ASSERT(reporter, SkRRect::kComplex_Type == rr2.type());
- for (int i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
+ for (size_t i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
REPORTER_ASSERT(reporter, isIn[i] == rr2.contains(pts2[i].fX, pts2[i].fY));
}
}