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

Unified Diff: experimental/skpdiff/SkCLImageDiffer.h

Issue 19374006: make OpenCL optional for skpdiff (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: this-> 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/SkCLImageDiffer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/skpdiff/SkCLImageDiffer.h
diff --git a/experimental/skpdiff/SkCLImageDiffer.h b/experimental/skpdiff/SkCLImageDiffer.h
index 6509392a9c3a00ffad1f96e1b6b101ebfa9a2849..50cf3897d21bf23683a363888c6fcd61e93cd1dc 100644
--- a/experimental/skpdiff/SkCLImageDiffer.h
+++ b/experimental/skpdiff/SkCLImageDiffer.h
@@ -22,6 +22,8 @@ class SkCLImageDiffer : public SkImageDiffer {
public:
SkCLImageDiffer();
+ virtual bool requiresOpenCL() SK_OVERRIDE { return true; }
+
/**
* Initializes the OpenCL resources this differ needs to work
* @param device An OpenCL device
@@ -85,30 +87,4 @@ private:
typedef SkImageDiffer INHERITED;
};
-/**
- * A OpenCL differ that measures the percentage of different corresponding pixels. If the two images
- * are not the same size or have no pixels, the result will always be zero.
- */
-class SkDifferentPixelsImageDiffer : public SkCLImageDiffer {
-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;
-
-protected:
- virtual bool onInit() SK_OVERRIDE;
-
-private:
- struct QueuedDiff;
-
- SkTDArray<QueuedDiff> fQueuedDiffs;
- cl_kernel fKernel;
-
- typedef SkCLImageDiffer INHERITED;
-};
-
#endif
« no previous file with comments | « no previous file | experimental/skpdiff/SkCLImageDiffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698