Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Unified Diff: tests/SkpSkGrTest.cpp

Issue 296053016: remove bit rot test gyp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/skpskgr_test.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/SkpSkGrTest.cpp
diff --git a/tests/SkpSkGrTest.cpp b/tests/SkpSkGrTest.cpp
index 8ca75dc99897234233869dbaa3cd41fb7849e33c..c1883a989033f783dc40851bfd7ad0c2e9b9e804 100644
--- a/tests/SkpSkGrTest.cpp
+++ b/tests/SkpSkGrTest.cpp
@@ -48,7 +48,7 @@ static const struct {
{1, "http___accuweather_com_.skp"}, // Couldn't convert bitmap to texture.http___absoku072_com_
};
-static const size_t skipOverSkGrCount = 0; // SK_ARRAY_COUNT(skipOverSkGr);
+static const size_t skipOverSkGrCount = SK_ARRAY_COUNT(skipOverSkGr);
/////////////////////////////////////////
@@ -425,7 +425,7 @@ void TestResult::testOne() {
do {
dim.fX = (pWidth + scale - 1) / scale;
dim.fY = (pHeight + scale - 1) / scale;
- bool success = bitmap.allocN32Pixels(, dim.fX, dim.fY);
+ bool success = bitmap.allocN32Pixels(dim.fX, dim.fY);
if (success) {
break;
}
« no previous file with comments | « gyp/skpskgr_test.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698