| #ifndef DMCpuGMTask_DEFINED |
| #define DMCpuGMTask_DEFINED |
| #include "DMTaskRunner.h" |
| // This is the main entry point for drawing GMs with the CPU. Commandline |
| // flags control whether this kicks off various comparison tasks when done. |
| class CpuGMTask : public CpuTask { |
| CpuGMTask(const char* config, |
| skiagm::GMRegistry::Factory, |
| virtual void draw() SK_OVERRIDE; |
| virtual bool shouldSkip() const SK_OVERRIDE; |
| virtual SkString name() const SK_OVERRIDE { return fName; } |
| skiagm::GMRegistry::Factory fGMFactory; |
| SkAutoTDelete<skiagm::GM> fGM; |
| const SkColorType fColorType; |
| #endif // DMCpuGMTask_DEFINED |