a7a9f37a31
For fun, make the output prettier, hiding ", N failures" unless there is one. BUG= R=bsalomon@google.com Review URL: https://codereview.chromium.org/29293003 git-svn-id: http://skia.googlecode.com/svn/trunk@11867 2bbb7eff-a529-9590-31e7-b0007b416f81
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
#include "DMGpuTask.h"
|
|
|
|
#include "DMComparisonTask.h"
|
|
#include "DMUtil.h"
|
|
#include "DMWriteTask.h"
|
|
#include "SkCommandLineFlags.h"
|
|
#include "SkGpuDevice.h"
|
|
#include "SkTLS.h"
|
|
|
|
namespace DM {
|
|
|
|
GpuTask::GpuTask(const char* name,
|
|
Reporter* reporter,
|
|
TaskRunner* taskRunner,
|
|
const skiagm::ExpectationsSource& expectations,
|
|
skiagm::GMRegistry::Factory gmFactory,
|
|
SkBitmap::Config config,
|
|
GrContextFactory::GLContextType contextType,
|
|
int sampleCount)
|
|
: Task(reporter, taskRunner)
|
|
, fGM(gmFactory(NULL))
|
|
, fName(underJoin(fGM->shortName(), name))
|
|
, fExpectations(expectations.get(png(fName).c_str()))
|
|
, fConfig(config)
|
|
, fContextType(contextType)
|
|
, fSampleCount(sampleCount)
|
|
{}
|
|
|
|
static void* new_gr_context_factory() {
|
|
return SkNEW(GrContextFactory);
|
|
}
|
|
|
|
static void delete_gr_context_factory(void* factory) {
|
|
SkDELETE((GrContextFactory*) factory);
|
|
}
|
|
|
|
static GrContextFactory* get_gr_factory() {
|
|
return reinterpret_cast<GrContextFactory*>(SkTLS::Get(&new_gr_context_factory,
|
|
&delete_gr_context_factory));
|
|
}
|
|
|
|
void GpuTask::draw() {
|
|
GrContext* gr = get_gr_factory()->get(fContextType); // Will be owned by device.
|
|
SkGpuDevice device(gr,
|
|
fConfig,
|
|
SkScalarCeilToInt(fGM->width()),
|
|
SkScalarCeilToInt(fGM->height()),
|
|
fSampleCount);
|
|
SkCanvas canvas(&device);
|
|
|
|
canvas.concat(fGM->getInitialTransform());
|
|
fGM->draw(&canvas);
|
|
canvas.flush();
|
|
|
|
SkBitmap bitmap;
|
|
bitmap.setConfig(fConfig, SkScalarCeilToInt(fGM->width()), SkScalarCeilToInt(fGM->height()));
|
|
canvas.readPixels(&bitmap, 0, 0);
|
|
|
|
// We offload checksum comparison to the main CPU threadpool.
|
|
// This cuts run time by about 30%.
|
|
this->spawnChild(SkNEW_ARGS(ComparisonTask, (*this, fExpectations, bitmap)));
|
|
this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
|
|
}
|
|
|
|
bool GpuTask::shouldSkip() const {
|
|
return SkToBool(fGM->getFlags() & skiagm::GM::kSkipGPU_Flag);
|
|
}
|
|
|
|
} // namespace DM
|