672588b684
BUG= R=scroggo@google.com Review URL: https://codereview.chromium.org/105893012 git-svn-id: http://skia.googlecode.com/svn/trunk@12958 2bbb7eff-a529-9590-31e7-b0007b416f81
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
#include "DMSerializeTask.h"
|
|
#include "DMUtil.h"
|
|
#include "DMWriteTask.h"
|
|
|
|
#include "SkCommandLineFlags.h"
|
|
#include "SkPicture.h"
|
|
#include "SkPixelRef.h"
|
|
|
|
DEFINE_bool(serialize, true, "If true, run picture serialization tests.");
|
|
|
|
namespace DM {
|
|
|
|
SerializeTask::SerializeTask(const Task& parent,
|
|
skiagm::GM* gm,
|
|
SkBitmap reference)
|
|
: Task(parent)
|
|
, fName(UnderJoin(parent.name().c_str(), "serialize"))
|
|
, fGM(gm)
|
|
, fReference(reference)
|
|
{}
|
|
|
|
void SerializeTask::draw() {
|
|
SkPicture recorded;
|
|
RecordPicture(fGM.get(), &recorded);
|
|
|
|
SkDynamicMemoryWStream wStream;
|
|
recorded.serialize(&wStream, NULL);
|
|
SkAutoTUnref<SkStream> rStream(wStream.detachAsStream());
|
|
SkAutoTUnref<SkPicture> reconstructed(SkPicture::CreateFromStream(rStream));
|
|
|
|
SkBitmap bitmap;
|
|
SetupBitmap(fReference.config(), fGM.get(), &bitmap);
|
|
DrawPicture(reconstructed, &bitmap);
|
|
if (!BitmapsEqual(bitmap, fReference)) {
|
|
this->fail();
|
|
this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
|
|
}
|
|
}
|
|
|
|
bool SerializeTask::shouldSkip() const {
|
|
return !FLAGS_serialize || fGM->getFlags() & skiagm::GM::kSkipPicture_Flag;
|
|
}
|
|
|
|
} // namespace DM
|