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

Side by Side Diff: dm/DMChecksumTask.cpp

Issue 108963002: DM: Add support for reading a directory of images with --expectations (-r). (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: comments etc Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dm/DMChecksumTask.h ('k') | dm/DMCpuTask.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include "DMChecksumTask.h"
2 #include "DMUtil.h"
3
4 namespace DM {
5
6 ChecksumTask::ChecksumTask(const Task& parent,
7 skiagm::Expectations expectations,
8 SkBitmap bitmap)
9 : Task(parent)
10 , fName(parent.name()) // Masquerade as parent so failures are attributed t o it.
11 , fExpectations(expectations)
12 , fBitmap(bitmap)
13 {}
14
15 void ChecksumTask::draw() {
16 if (fExpectations.ignoreFailure() || fExpectations.empty()) {
17 return;
18 }
19
20 const skiagm::GmResultDigest digest(fBitmap);
21 if (!fExpectations.match(digest)) {
22 this->fail();
23 }
24 }
25
26 } // namespace DM
OLDNEW
« no previous file with comments | « dm/DMChecksumTask.h ('k') | dm/DMCpuTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698