e4636aa173
Replay isn't that helpful of a test any more now that we have the more stringent Quilt tests. Quilt was missing bounding box hierarchies, though, while Replay was sort of testing RTree (pointlessly, as it was drawing without any clip). Now Quilt does everything, testing RTree, QuadTree, and TileGrid. Quilt mode now falls back to drawing all at once (i.e. Replay) for GMs that don't tile perfectly. Still a TODO to make this check more flexible than exact pixel matches. Two GMs fail when using a BBH: - imageresizetiled - resizeimagefilter We think we're not adjusting the bounds of save layers by their paint. This is probably a bug, but one to be fixed separately from adding new tests. BUG=skia: R=robertphillips@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/377373003
65 lines
2.1 KiB
C++
65 lines
2.1 KiB
C++
#include "DMCpuGMTask.h"
|
|
#include "DMExpectationsTask.h"
|
|
#include "DMPipeTask.h"
|
|
#include "DMQuiltTask.h"
|
|
#include "DMSerializeTask.h"
|
|
#include "DMUtil.h"
|
|
#include "DMWriteTask.h"
|
|
|
|
namespace DM {
|
|
|
|
CpuGMTask::CpuGMTask(const char* config,
|
|
Reporter* reporter,
|
|
TaskRunner* taskRunner,
|
|
skiagm::GMRegistry::Factory gmFactory,
|
|
const Expectations& expectations,
|
|
SkColorType colorType)
|
|
: CpuTask(reporter, taskRunner)
|
|
, fGMFactory(gmFactory)
|
|
, fGM(fGMFactory(NULL))
|
|
, fName(UnderJoin(fGM->getName(), config))
|
|
, fExpectations(expectations)
|
|
, fColorType(colorType)
|
|
{}
|
|
|
|
void CpuGMTask::draw() {
|
|
SkBitmap bitmap;
|
|
AllocatePixels(fColorType, fGM->getISize().width(), fGM->getISize().height(), &bitmap);
|
|
|
|
SkCanvas canvas(bitmap);
|
|
canvas.concat(fGM->getInitialTransform());
|
|
fGM->draw(&canvas);
|
|
canvas.flush();
|
|
|
|
#define SPAWN(ChildTask, ...) this->spawnChild(SkNEW_ARGS(ChildTask, (*this, __VA_ARGS__)))
|
|
SPAWN(ExpectationsTask, fExpectations, bitmap);
|
|
|
|
SPAWN(PipeTask, fGMFactory(NULL), bitmap, PipeTask::kInProcess_Mode);
|
|
SPAWN(PipeTask, fGMFactory(NULL), bitmap, PipeTask::kCrossProcess_Mode);
|
|
SPAWN(PipeTask, fGMFactory(NULL), bitmap, PipeTask::kSharedAddress_Mode);
|
|
|
|
SPAWN(QuiltTask, fGMFactory(NULL), bitmap, QuiltTask::kNoBBH_Mode);
|
|
SPAWN(QuiltTask, fGMFactory(NULL), bitmap, QuiltTask::kRTree_Mode);
|
|
SPAWN(QuiltTask, fGMFactory(NULL), bitmap, QuiltTask::kQuadTree_Mode);
|
|
SPAWN(QuiltTask, fGMFactory(NULL), bitmap, QuiltTask::kTileGrid_Mode);
|
|
SPAWN(QuiltTask, fGMFactory(NULL), bitmap, QuiltTask::kSkRecord_Mode);
|
|
|
|
SPAWN(SerializeTask, fGMFactory(NULL), bitmap, SerializeTask::kNormal_Mode);
|
|
SPAWN(SerializeTask, fGMFactory(NULL), bitmap, SerializeTask::kSkRecord_Mode);
|
|
|
|
SPAWN(WriteTask, bitmap);
|
|
#undef SPAWN
|
|
}
|
|
|
|
bool CpuGMTask::shouldSkip() const {
|
|
if (kRGB_565_SkColorType == fColorType && (fGM->getFlags() & skiagm::GM::kSkip565_Flag)) {
|
|
return true;
|
|
}
|
|
if (fGM->getFlags() & skiagm::GM::kGPUOnly_Flag) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
} // namespace DM
|