114c3cd054
Reason for revert: plenty of data Original issue's description: > Sketch DM refactor. > > BUG=skia:3255 > > > I think this supports everything DM used to, but has completely refactored how > it works to fit the design in the bug. > > Configs like "tiles-gpu" are automatically wired up. > > I wouldn't suggest looking at this as a diff. There's just a bunch of deleted > files, a few new files, and one new file that shares a name with a deleted file > (DM.cpp). > > NOTREECHECKS=true > > Committed: https://skia.googlesource.com/skia/+/709d2c3e5062c5b57f91273bfc11a751f5b2bb88 TBR=bsalomon@google.com,mtklein@chromium.org NOTREECHECKS=true NOTRY=true BUG=skia:3255 Review URL: https://codereview.chromium.org/853883004
48 lines
1.0 KiB
C++
48 lines
1.0 KiB
C++
#ifndef DMPDFTask_DEFINED
|
|
#define DMPDFTask_DEFINED
|
|
|
|
#include "DMPDFRasterizeTask.h"
|
|
#include "DMTask.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkPicture.h"
|
|
#include "SkString.h"
|
|
#include "SkTemplates.h"
|
|
#include "gm.h"
|
|
|
|
namespace DM {
|
|
|
|
// This task renders a GM or SKP using Skia's PDF backend.
|
|
// If rasterizePdfProc is non-NULL, it will spawn a PDFRasterizeTask.
|
|
class PDFTask : public CpuTask {
|
|
public:
|
|
PDFTask(const char*,
|
|
Reporter*,
|
|
TaskRunner*,
|
|
skiagm::GMRegistry::Factory,
|
|
RasterizePdfProc);
|
|
|
|
PDFTask(Reporter*,
|
|
TaskRunner*,
|
|
const SkPicture*,
|
|
SkString name,
|
|
RasterizePdfProc);
|
|
|
|
void draw() SK_OVERRIDE;
|
|
|
|
bool shouldSkip() const SK_OVERRIDE;
|
|
|
|
SkString name() const SK_OVERRIDE { return fName; }
|
|
|
|
private:
|
|
// One of these two will be set.
|
|
SkAutoTDelete<skiagm::GM> fGM;
|
|
SkAutoTUnref<const SkPicture> fPicture;
|
|
|
|
const SkString fName;
|
|
RasterizePdfProc fRasterize;
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMPDFTask_DEFINED
|