192cbf67b2
Plus: - minor ReplayTask refactoring to share code with SerializeTask - move --replay to ReplayTask and --serialize to SerializeTask like WriteTask - when --writePath is given, write failures for Replay and Serialize tasks - function names have fewer blatant Skia style violations BUG= R=bsalomon@google.com Author: mtklein@google.com Review URL: https://codereview.chromium.org/32613003 git-svn-id: http://skia.googlecode.com/svn/trunk@11890 2bbb7eff-a529-9590-31e7-b0007b416f81
35 lines
813 B
C++
35 lines
813 B
C++
#ifndef DMSerializeTask_DEFINED
|
|
#define DMSerializeTask_DEFINED
|
|
|
|
#include "DMTask.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkString.h"
|
|
#include "SkTemplates.h"
|
|
#include "gm.h"
|
|
|
|
// Record a picture, serialize it, deserialize it, then draw it and compare to reference bitmap.
|
|
|
|
namespace DM {
|
|
|
|
class SerializeTask : public Task {
|
|
|
|
public:
|
|
SerializeTask(const Task& parent,
|
|
skiagm::GM*,
|
|
SkBitmap reference);
|
|
|
|
virtual void draw() SK_OVERRIDE;
|
|
virtual bool usesGpu() const SK_OVERRIDE { return false; }
|
|
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;
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMSerializeTask_DEFINED
|