zachr@google.com | d658568 | 2013-07-17 19:29:19 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkDifferentPixelsMetric_DEFINED |
| 9 | #define SkDifferentPixelsMetric_DEFINED |
| 10 | |
| 11 | #include "SkTDArray.h" |
| 12 | |
| 13 | #if SK_SUPPORT_OPENCL |
| 14 | #include "SkCLImageDiffer.h" |
| 15 | #else |
| 16 | #include "SkImageDiffer.h" |
| 17 | #endif |
| 18 | |
| 19 | /** |
| 20 | * A differ that measures the percentage of different corresponding pixels. If the two images are |
| 21 | * not the same size or have no pixels, the result will always be zero. |
| 22 | */ |
| 23 | class SkDifferentPixelsMetric : |
| 24 | #if SK_SUPPORT_OPENCL |
| 25 | public SkCLImageDiffer { |
| 26 | #else |
| 27 | public SkImageDiffer { |
| 28 | #endif |
| 29 | public: |
djsollen@google.com | 513a7bf | 2013-11-07 19:24:06 +0000 | [diff] [blame] | 30 | SkDifferentPixelsMetric() : fPOIAlphaMask(false) {} |
| 31 | |
zachr@google.com | d658568 | 2013-07-17 19:29:19 +0000 | [diff] [blame] | 32 | virtual const char* getName() SK_OVERRIDE; |
djsollen@google.com | 513a7bf | 2013-11-07 19:24:06 +0000 | [diff] [blame] | 33 | virtual bool enablePOIAlphaMask() SK_OVERRIDE; |
zachr@google.com | d658568 | 2013-07-17 19:29:19 +0000 | [diff] [blame] | 34 | virtual int queueDiff(SkBitmap* baseline, SkBitmap* test) SK_OVERRIDE; |
| 35 | virtual void deleteDiff(int id) SK_OVERRIDE; |
| 36 | virtual bool isFinished(int id) SK_OVERRIDE; |
| 37 | virtual double getResult(int id) SK_OVERRIDE; |
| 38 | virtual int getPointsOfInterestCount(int id) SK_OVERRIDE; |
| 39 | virtual SkIPoint* getPointsOfInterest(int id) SK_OVERRIDE; |
djsollen@google.com | 513a7bf | 2013-11-07 19:24:06 +0000 | [diff] [blame] | 40 | virtual SkBitmap* getPointsOfInterestAlphaMask(int id) SK_OVERRIDE; |
zachr@google.com | d658568 | 2013-07-17 19:29:19 +0000 | [diff] [blame] | 41 | |
| 42 | protected: |
| 43 | #if SK_SUPPORT_OPENCL |
| 44 | virtual bool onInit() SK_OVERRIDE; |
| 45 | #endif |
| 46 | |
| 47 | private: |
djsollen@google.com | 513a7bf | 2013-11-07 19:24:06 +0000 | [diff] [blame] | 48 | bool fPOIAlphaMask; |
zachr@google.com | d658568 | 2013-07-17 19:29:19 +0000 | [diff] [blame] | 49 | |
djsollen@google.com | 513a7bf | 2013-11-07 19:24:06 +0000 | [diff] [blame] | 50 | struct QueuedDiff; |
zachr@google.com | d658568 | 2013-07-17 19:29:19 +0000 | [diff] [blame] | 51 | SkTDArray<QueuedDiff> fQueuedDiffs; |
| 52 | |
| 53 | #if SK_SUPPORT_OPENCL |
| 54 | cl_kernel fKernel; |
| 55 | |
| 56 | typedef SkCLImageDiffer INHERITED; |
| 57 | #else |
| 58 | typedef SkImageDiffer INHERITED; |
| 59 | #endif |
| 60 | }; |
| 61 | |
| 62 | #endif |