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

Unified Diff: experimental/skpdiff/SkDiffContext.cpp

Issue 19256002: add table pregeneration script for pmetric (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: help Created 7 years, 5 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 | « no previous file | experimental/skpdiff/SkPMetric.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/skpdiff/SkDiffContext.cpp
diff --git a/experimental/skpdiff/SkDiffContext.cpp b/experimental/skpdiff/SkDiffContext.cpp
index 78a2384fea7e960f8ee4d60232ed96c80e888354..b5991273b50e1749fd46d733b1abac192de3a445 100644
--- a/experimental/skpdiff/SkDiffContext.cpp
+++ b/experimental/skpdiff/SkDiffContext.cpp
@@ -101,6 +101,7 @@ void SkDiffContext::diffDirectories(const char baselinePath[], const char testPa
}
for (int baselineIndex = 0; baselineIndex < baselineEntries.count(); baselineIndex++) {
+ SkDebugf("[%i/%i] ", baselineIndex, baselineEntries.count());
const char* baseFilename = baselineEntries[baselineIndex].c_str();
// Find the real location of each file to compare
@@ -140,6 +141,7 @@ void SkDiffContext::diffPatterns(const char baselinePattern[], const char testPa
}
for (int entryIndex = 0; entryIndex < baselineEntries.count(); entryIndex++) {
+ SkDebugf("[%i/%i] ", entryIndex, baselineEntries.count());
const char* baselineFilename = baselineEntries[entryIndex].c_str();
const char* testFilename = testEntries [entryIndex].c_str();
« no previous file with comments | « no previous file | experimental/skpdiff/SkPMetric.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698