commit | 1ab0aac67247bf3ec1f23b220456d316d9a80b45 | [log] [tgz] |
---|---|---|
author | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Mar 13 20:41:48 2013 +0000 |
committer | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Mar 13 20:41:48 2013 +0000 |
tree | 47c2fa15529ebe0538a355f671f6352c94105e33 | |
parent | 1304bb25aa3b0baa61fc2e2900fabcef88801b59 [diff] [blame] |
shape ops -- fix errors git-svn-id: http://skia.googlecode.com/svn/trunk@8138 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/EdgeWalker_TestUtility.cpp b/experimental/Intersection/EdgeWalker_TestUtility.cpp index 163bd51..7926ee9 100644 --- a/experimental/Intersection/EdgeWalker_TestUtility.cpp +++ b/experimental/Intersection/EdgeWalker_TestUtility.cpp
@@ -370,7 +370,7 @@ for (int y = 0; y < bitHeight; ++y) { uint8_t* addr1 = bits.getAddr1(0, y); uint8_t* addr2 = bits.getAddr1(bitWidth, y); - for (int x = 0; x < bits.rowBytes(); ++x) { + for (unsigned x = 0; x < bits.rowBytes(); ++x) { SkASSERT(addr1[x] == addr2[x]); } }