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 #include "SkImageDiffer.h" 9 10 const double SkImageDiffer::RESULT_CORRECT = 1.0f; 11 const double SkImageDiffer::RESULT_INCORRECT = 0.0f; 12 13 SkImageDiffer::SkImageDiffer() { 14 15 } 16 17 SkImageDiffer::~SkImageDiffer() { 18 19 } 20