a9ceaf5364
This saves a bunch of CPU time in DM, and even better, lets us tear it down! BUG=skia: R=robertphillips@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/612603002
32 lines
717 B
C++
32 lines
717 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 CpuTask {
|
|
|
|
public:
|
|
SerializeTask(const Task& parent, skiagm::GM*, SkBitmap reference);
|
|
|
|
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;
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMSerializeTask_DEFINED
|