d393b17cf3
This CL sets the stage for retracting the SkPicture::kOptimizeForClippedPlayback_RecordingFlag flag from the public API (more work needs to be done in Blink & Chrome). In the new world the only way to set this flag (and thus instantiate an SkPicture-derived class) is by passing a factory to the SkPictureRecorder class. This is to get all clients always using factories so that we can then change the factory call used (i.e., so the factory just creates a BBH) and do away with the SkPicture-derived classes. BUG=skia:2315 R=reed@google.com Author: robertphillips@google.com Review URL: https://codereview.chromium.org/239703006 git-svn-id: http://skia.googlecode.com/svn/trunk@14221 2bbb7eff-a529-9590-31e7-b0007b416f81
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#include "DMReplayTask.h"
|
|
#include "DMWriteTask.h"
|
|
#include "DMUtil.h"
|
|
|
|
#include "SkCommandLineFlags.h"
|
|
#include "SkPicture.h"
|
|
#include "SkRTreePicture.h"
|
|
|
|
DEFINE_bool(replay, true, "If true, run picture replay tests.");
|
|
DEFINE_bool(rtree, true, "If true, run picture replay tests with an rtree.");
|
|
|
|
namespace DM {
|
|
|
|
ReplayTask::ReplayTask(const Task& parent,
|
|
skiagm::GM* gm,
|
|
SkBitmap reference,
|
|
bool useRTree)
|
|
: CpuTask(parent)
|
|
, fName(UnderJoin(parent.name().c_str(), useRTree ? "rtree" : "replay"))
|
|
, fGM(gm)
|
|
, fReference(reference)
|
|
, fUseRTree(useRTree)
|
|
{}
|
|
|
|
void ReplayTask::draw() {
|
|
SkAutoTUnref<SkPictureFactory> factory;
|
|
if (fUseRTree) {
|
|
factory.reset(SkNEW(SkRTreePictureFactory));
|
|
}
|
|
SkAutoTUnref<SkPicture> recorded(RecordPicture(fGM.get(), 0, factory));
|
|
|
|
SkBitmap bitmap;
|
|
SetupBitmap(fReference.colorType(), fGM.get(), &bitmap);
|
|
DrawPicture(recorded, &bitmap);
|
|
if (!BitmapsEqual(bitmap, fReference)) {
|
|
this->fail();
|
|
this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
|
|
}
|
|
}
|
|
|
|
bool ReplayTask::shouldSkip() const {
|
|
if (fGM->getFlags() & skiagm::GM::kSkipPicture_Flag) {
|
|
return true;
|
|
}
|
|
|
|
if (FLAGS_rtree && fUseRTree) {
|
|
return (fGM->getFlags() & skiagm::GM::kSkipTiled_Flag) != 0;
|
|
}
|
|
if (FLAGS_replay && !fUseRTree) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace DM
|