2014-05-14 17:55:32 +00:00
|
|
|
#ifndef DMSKPTask_DEFINED
|
|
|
|
#define DMSKPTask_DEFINED
|
|
|
|
|
2014-09-08 16:12:28 +00:00
|
|
|
#include "DMExpectations.h"
|
2014-05-14 17:55:32 +00:00
|
|
|
#include "DMReporter.h"
|
|
|
|
#include "DMTask.h"
|
|
|
|
#include "DMTaskRunner.h"
|
|
|
|
#include "SkPicture.h"
|
|
|
|
#include "SkString.h"
|
|
|
|
#include "SkTemplates.h"
|
|
|
|
|
|
|
|
// Draws an SKP to a raster canvas, then compares it with some other modes.
|
|
|
|
|
|
|
|
namespace DM {
|
|
|
|
|
|
|
|
class SKPTask : public CpuTask {
|
|
|
|
public:
|
2014-09-08 16:12:28 +00:00
|
|
|
SKPTask(Reporter*, TaskRunner*, const Expectations&, const SkPicture*, SkString name);
|
2014-05-14 17:55:32 +00:00
|
|
|
|
|
|
|
virtual void draw() SK_OVERRIDE;
|
|
|
|
virtual bool shouldSkip() const SK_OVERRIDE { return false; }
|
|
|
|
virtual SkString name() const SK_OVERRIDE { return fName; }
|
|
|
|
|
|
|
|
private:
|
2014-06-24 19:28:34 +00:00
|
|
|
SkAutoTUnref<const SkPicture> fPicture;
|
2014-09-08 16:12:28 +00:00
|
|
|
const Expectations& fExpectations;
|
2014-05-14 17:55:32 +00:00
|
|
|
const SkString fName;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace DM
|
|
|
|
|
|
|
|
#endif // DMSKPTask_DEFINED
|