diff options
author | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-09-06 02:01:13 +0000 |
---|---|---|
committer | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-09-06 02:01:13 +0000 |
commit | 6c778164a743f8760dca251524d51848548b436f (patch) | |
tree | 9daf221d43cfbdf6ec954dd5080a2ffb895aa760 /tests | |
parent | b4c2819671757044857ec477156699163025a353 (diff) |
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@5410 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/RTreeTest.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/RTreeTest.cpp b/tests/RTreeTest.cpp index 587222caf7..61e6b675ad 100644 --- a/tests/RTreeTest.cpp +++ b/tests/RTreeTest.cpp @@ -42,7 +42,7 @@ static void random_data_rects(SkRandom& rand, DataRect out[], int n) { } } -static bool verify_query(SkIRect query, DataRect rects[], +static bool verify_query(SkIRect query, DataRect rects[], SkTDArray<void*>& found) { SkTDArray<void*> expected; // manually intersect with every rectangle @@ -52,23 +52,23 @@ static bool verify_query(SkIRect query, DataRect rects[], } } - if (expected.count() != found.count()) { - return false; - } - + if (expected.count() != found.count()) { + return false; + } + if (0 == expected.count()) { return true; } // Just cast to long since sorting by the value of the void*'s was being problematic... - SkTQSort(reinterpret_cast<long*>(expected.begin()), + SkTQSort(reinterpret_cast<long*>(expected.begin()), reinterpret_cast<long*>(expected.end() - 1)); - SkTQSort(reinterpret_cast<long*>(found.begin()), + SkTQSort(reinterpret_cast<long*>(found.begin()), reinterpret_cast<long*>(found.end() - 1)); return found == expected; } -static void runQueries(skiatest::Reporter* reporter, SkRandom& rand, DataRect rects[], +static void runQueries(skiatest::Reporter* reporter, SkRandom& rand, DataRect rects[], SkRTree& tree) { for (int i = 0; i < NUM_QUERIES; ++i) { SkTDArray<void*> hits; @@ -89,7 +89,7 @@ static void TestRTree(skiatest::Reporter* reporter) { int tmp = NUM_RECTS; while (tmp > 0) { - tmp -= static_cast<int>(pow(static_cast<double>(MAX_CHILDREN), + tmp -= static_cast<int>(pow(static_cast<double>(MAX_CHILDREN), static_cast<double>(expectedDepthMin + 1))); ++expectedDepthMin; } |