| Index: tools/skpdiff/SkDiffContext.h
|
| diff --git a/tools/skpdiff/SkDiffContext.h b/tools/skpdiff/SkDiffContext.h
|
| index 93354e8dec0d1ce752aeb72094a6fbaf03bd6ebb..20193b38514248e77ba6e7a34752cf299a413d14 100644
|
| --- a/tools/skpdiff/SkDiffContext.h
|
| +++ b/tools/skpdiff/SkDiffContext.h
|
| @@ -23,6 +23,8 @@ public:
|
| SkDiffContext();
|
| ~SkDiffContext();
|
|
|
| + void setThreadCount(int threadCount) { fThreadCount = threadCount; }
|
| +
|
| /**
|
| * Sets the differs to be used in each diff. Already started diffs will not retroactively use
|
| * these.
|
| @@ -104,6 +106,7 @@ private:
|
| };
|
|
|
| struct DiffRecord {
|
| + SkString fDifferencePath;
|
| SkString fBaselinePath;
|
| SkString fTestPath;
|
| SkTArray<DiffData> fDiffs;
|
| @@ -117,6 +120,7 @@ private:
|
|
|
| SkImageDiffer** fDiffers;
|
| int fDifferCount;
|
| + int fThreadCount;
|
| };
|
|
|
| #endif
|
|
|