72c9faab45
This fixes every case where virtual and SK_OVERRIDE were on the same line, which should be the bulk of cases. We'll have to manually clean up the rest over time unless I level up in regexes. for f in (find . -type f); perl -p -i -e 's/virtual (.*)SK_OVERRIDE/\1SK_OVERRIDE/g' $f; end BUG=skia: Review URL: https://codereview.chromium.org/806653007
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
|