5b39f5ba9c
git-svn-id: http://skia.googlecode.com/svn/trunk@12427 2bbb7eff-a529-9590-31e7-b0007b416f81
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
#include "DMSerializeTask.h"
|
|
#include "DMUtil.h"
|
|
#include "DMWriteTask.h"
|
|
|
|
#include "SkCommandLineFlags.h"
|
|
#include "SkPicture.h"
|
|
#include "SkPixelRef.h"
|
|
|
|
DEFINE_bool(serialize, false, "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)
|
|
{}
|
|
|
|
static SkData* trivial_bitmap_encoder(size_t* pixelRefOffset, const SkBitmap& bitmap) {
|
|
if (NULL == bitmap.pixelRef()) {
|
|
return NULL;
|
|
}
|
|
SkData* data = bitmap.pixelRef()->refEncodedData();
|
|
*pixelRefOffset = bitmap.pixelRefOffset();
|
|
return data;
|
|
}
|
|
|
|
void SerializeTask::draw() {
|
|
SkPicture recorded;
|
|
RecordPicture(fGM.get(), &recorded);
|
|
|
|
SkDynamicMemoryWStream wStream;
|
|
recorded.serialize(&wStream, &trivial_bitmap_encoder);
|
|
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
|