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

Unified Diff: experimental/skpdiff/SkPMetric.h

Issue 18176005: add point of interest API (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: constant zero buffer Created 7 years, 6 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 | « experimental/skpdiff/SkImageDiffer.cpp ('k') | experimental/skpdiff/SkPMetric.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/skpdiff/SkPMetric.h
diff --git a/experimental/skpdiff/SkPMetric.h b/experimental/skpdiff/SkPMetric.h
index fb32db5568c2aaded363296c6fd81243380ba187..5963c2f33ca48257a99ae572d844bd9fa1c6e117 100644
--- a/experimental/skpdiff/SkPMetric.h
+++ b/experimental/skpdiff/SkPMetric.h
@@ -8,6 +8,7 @@
#ifndef SkPMetric_DEFINED
#define SkPMetric_DEFINED
+#include "SkTArray.h"
#include "SkTDArray.h"
#include "SkImageDiffer.h"
@@ -19,16 +20,20 @@ class SkPMetric : public SkImageDiffer {
public:
virtual const char* getName() SK_OVERRIDE;
virtual int queueDiff(SkBitmap* baseline, SkBitmap* test) SK_OVERRIDE;
+ virtual void deleteDiff(int id) SK_OVERRIDE;
virtual bool isFinished(int id) SK_OVERRIDE;
virtual double getResult(int id) SK_OVERRIDE;
+ virtual int getPointsOfInterestCount(int id) SK_OVERRIDE;
+ virtual SkIPoint* getPointsOfInterest(int id) SK_OVERRIDE;
private:
struct QueuedDiff {
bool finished;
double result;
+ SkTDArray<SkIPoint> poi;
};
- SkTDArray<QueuedDiff> fQueuedDiffs;
+ SkTArray<QueuedDiff> fQueuedDiffs;
typedef SkImageDiffer INHERITED;
};
« no previous file with comments | « experimental/skpdiff/SkImageDiffer.cpp ('k') | experimental/skpdiff/SkPMetric.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698