efc51b79a2
BUG=skia:1798 R=mtklein@google.com, scroggo@google.com Review URL: https://codereview.chromium.org/60833002 git-svn-id: http://skia.googlecode.com/svn/trunk@12252 2bbb7eff-a529-9590-31e7-b0007b416f81
31 lines
669 B
C++
31 lines
669 B
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkPMetric_DEFINED
|
|
#define SkPMetric_DEFINED
|
|
|
|
#include "SkTArray.h"
|
|
#include "SkTDArray.h"
|
|
|
|
#include "SkImageDiffer.h"
|
|
|
|
/**
|
|
* An image differ that uses the pdiff image metric to compare images.
|
|
*/
|
|
class SkPMetric : public SkImageDiffer {
|
|
public:
|
|
virtual const char* getName() const SK_OVERRIDE { return "perceptual"; }
|
|
virtual bool diff(SkBitmap* baseline, SkBitmap* test, bool computeMask,
|
|
Result* result) const SK_OVERRIDE;
|
|
|
|
private:
|
|
typedef SkImageDiffer INHERITED;
|
|
};
|
|
|
|
|
|
#endif
|