2d3a7897e5
internal_links is failing across all three versions. One of the rects doesn't draw. BUG= R=epoger@google.com Author: mtklein@google.com Review URL: https://codereview.chromium.org/47773002 git-svn-id: http://skia.googlecode.com/svn/trunk@11985 2bbb7eff-a529-9590-31e7-b0007b416f81
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
#ifndef DMPipeTask_DEFINED
|
|
#define DMPipeTask_DEFINED
|
|
|
|
#include "DMTask.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkString.h"
|
|
#include "SkTemplates.h"
|
|
#include "gm.h"
|
|
|
|
// Sends a GM through a pipe, draws it, and compares against the reference bitmap.
|
|
|
|
namespace DM {
|
|
|
|
class PipeTask : public Task {
|
|
|
|
public:
|
|
PipeTask(const Task& parent, // PipeTask must be a child task. Pass its parent here.
|
|
skiagm::GM*, // GM to run through a pipe. Takes ownership.
|
|
SkBitmap reference, // Bitmap to compare pipe results to.
|
|
bool crossProcess, // Should we set up a cross process pipe?
|
|
bool sharedAddressSpace); // If cross process, should it assume shared address space?
|
|
|
|
virtual void draw() SK_OVERRIDE;
|
|
virtual bool usesGpu() const SK_OVERRIDE { return false; }
|
|
virtual bool shouldSkip() const SK_OVERRIDE;
|
|
virtual SkString name() const SK_OVERRIDE { return fName; }
|
|
|
|
private:
|
|
const uint32_t fFlags;
|
|
const SkString fName;
|
|
SkAutoTDelete<skiagm::GM> fGM;
|
|
const SkBitmap fReference;
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMPipeTask_DEFINED
|