197ceda929
It's getting tricky to coordinate changes to output for bots with -r, and -r is not widely used. The suggested alternative is to run skdiff. BUG=skia: R=jcgregorio@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/553583004
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
#ifndef DMWriteTask_DEFINED
|
|
#define DMWriteTask_DEFINED
|
|
|
|
#include "DMTask.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkJSONCPP.h"
|
|
#include "SkStream.h"
|
|
#include "SkString.h"
|
|
#include "SkTArray.h"
|
|
|
|
|
|
// Writes a bitmap to a file.
|
|
|
|
namespace DM {
|
|
|
|
class WriteTask : public CpuTask {
|
|
|
|
public:
|
|
WriteTask(const Task& parent, // WriteTask must be a child task.
|
|
SkBitmap bitmap); // Bitmap to encode to PNG and write to disk.
|
|
|
|
// Takes ownership of SkStreamAsset
|
|
WriteTask(const Task& parent, // WriteTask must be a child task.
|
|
SkStreamAsset* data, // Pre-encoded data to write to disk.
|
|
const char* ext); // File extension.
|
|
|
|
virtual void draw() SK_OVERRIDE;
|
|
virtual bool shouldSkip() const SK_OVERRIDE;
|
|
virtual SkString name() const SK_OVERRIDE;
|
|
|
|
static void DumpJson();
|
|
|
|
private:
|
|
SkTArray<SkString> fSuffixes;
|
|
const SkString fFullName;
|
|
const SkString fBaseName;
|
|
const SkBitmap fBitmap;
|
|
SkAutoTDelete<SkStreamAsset> fData;
|
|
const char* fExtension;
|
|
|
|
void makeDirOrFail(SkString dir);
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMWriteTask_DEFINED
|