90b5a2a653
This does render_pictures, plus checks SkRecord optimizations. Disable an SkRecord optimization that draws several bot SKPs wrong. (To be investigated.) BUG=skia:2378 R=reed@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/270543004 git-svn-id: http://skia.googlecode.com/svn/trunk@14739 2bbb7eff-a529-9590-31e7-b0007b416f81
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
#include "DMCpuGMTask.h"
|
|
#include "DMExpectationsTask.h"
|
|
#include "DMPipeTask.h"
|
|
#include "DMQuiltTask.h"
|
|
#include "DMRecordTask.h"
|
|
#include "DMReplayTask.h"
|
|
#include "DMSerializeTask.h"
|
|
#include "DMUtil.h"
|
|
#include "DMWriteTask.h"
|
|
|
|
namespace DM {
|
|
|
|
CpuGMTask::CpuGMTask(const char* config,
|
|
Reporter* reporter,
|
|
TaskRunner* taskRunner,
|
|
const Expectations& expectations,
|
|
skiagm::GMRegistry::Factory gmFactory,
|
|
SkColorType colorType)
|
|
: CpuTask(reporter, taskRunner)
|
|
, fGMFactory(gmFactory)
|
|
, fGM(fGMFactory(NULL))
|
|
, fName(UnderJoin(fGM->getName(), config))
|
|
, fExpectations(expectations)
|
|
, fColorType(colorType)
|
|
{}
|
|
|
|
void CpuGMTask::draw() {
|
|
SkBitmap bitmap;
|
|
SetupBitmap(fColorType, fGM.get(), &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);
|
|
SPAWN(RecordTask, fGMFactory(NULL), bitmap, RecordTask::kOptimize_Mode);
|
|
SPAWN(RecordTask, fGMFactory(NULL), bitmap, RecordTask::kNoOptimize_Mode);
|
|
SPAWN(ReplayTask, fGMFactory(NULL), bitmap, ReplayTask::kNormal_Mode);
|
|
SPAWN(ReplayTask, fGMFactory(NULL), bitmap, ReplayTask::kRTree_Mode);
|
|
SPAWN(SerializeTask, fGMFactory(NULL), bitmap);
|
|
|
|
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
|