93043bc252
BUG=skia:2378 R=fmalita@chromium.org, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/271443007 git-svn-id: http://skia.googlecode.com/svn/trunk@14598 2bbb7eff-a529-9590-31e7-b0007b416f81
33 lines
730 B
C++
33 lines
730 B
C++
#ifndef DMRecordTask_DEFINED
|
|
#define DMRecordTask_DEFINED
|
|
|
|
#include "DMTask.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkString.h"
|
|
#include "SkTemplates.h"
|
|
#include "gm.h"
|
|
|
|
// Records a GM through an SkRecord, draws it, and compares against the reference bitmap.
|
|
|
|
namespace DM {
|
|
|
|
class RecordTask : public CpuTask {
|
|
|
|
public:
|
|
RecordTask(const Task& parent, skiagm::GM*, SkBitmap reference, bool optimize);
|
|
|
|
virtual void draw() SK_OVERRIDE;
|
|
virtual bool shouldSkip() const SK_OVERRIDE;
|
|
virtual SkString name() const SK_OVERRIDE { return fName; }
|
|
|
|
private:
|
|
const SkString fName;
|
|
SkAutoTDelete<skiagm::GM> fGM;
|
|
const SkBitmap fReference;
|
|
bool fOptimize;
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMRecordTask_DEFINED
|