commit-bot@chromium.org | ef57b7e | 2014-02-28 20:31:31 +0000 | [diff] [blame] | 1 | #ifndef DMCpuGMTask_DEFINED |
| 2 | #define DMCpuGMTask_DEFINED |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 3 | |
commit-bot@chromium.org | 99589af | 2013-12-10 14:53:16 +0000 | [diff] [blame] | 4 | #include "DMExpectations.h" |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 5 | #include "DMReporter.h" |
| 6 | #include "DMTask.h" |
| 7 | #include "DMTaskRunner.h" |
| 8 | #include "SkBitmap.h" |
| 9 | #include "SkString.h" |
| 10 | #include "SkTemplates.h" |
| 11 | #include "gm.h" |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 12 | |
| 13 | // This is the main entry point for drawing GMs with the CPU. Commandline |
| 14 | // flags control whether this kicks off various comparison tasks when done. |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 15 | |
| 16 | namespace DM { |
| 17 | |
commit-bot@chromium.org | ef57b7e | 2014-02-28 20:31:31 +0000 | [diff] [blame] | 18 | class CpuGMTask : public CpuTask { |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 19 | public: |
commit-bot@chromium.org | ef57b7e | 2014-02-28 20:31:31 +0000 | [diff] [blame] | 20 | CpuGMTask(const char* config, |
| 21 | Reporter*, |
| 22 | TaskRunner*, |
commit-bot@chromium.org | ef57b7e | 2014-02-28 20:31:31 +0000 | [diff] [blame] | 23 | skiagm::GMRegistry::Factory, |
mtklein | e4d3e60 | 2014-06-06 09:28:43 -0700 | [diff] [blame] | 24 | const Expectations&, |
commit-bot@chromium.org | ef57b7e | 2014-02-28 20:31:31 +0000 | [diff] [blame] | 25 | SkColorType); |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 26 | |
| 27 | virtual void draw() SK_OVERRIDE; |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 28 | virtual bool shouldSkip() const SK_OVERRIDE; |
| 29 | virtual SkString name() const SK_OVERRIDE { return fName; } |
| 30 | |
| 31 | private: |
| 32 | skiagm::GMRegistry::Factory fGMFactory; |
| 33 | SkAutoTDelete<skiagm::GM> fGM; |
| 34 | const SkString fName; |
commit-bot@chromium.org | 99589af | 2013-12-10 14:53:16 +0000 | [diff] [blame] | 35 | const Expectations& fExpectations; |
commit-bot@chromium.org | 15a1405 | 2014-02-16 00:59:25 +0000 | [diff] [blame] | 36 | const SkColorType fColorType; |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | } // namespace DM |
| 40 | |
commit-bot@chromium.org | ef57b7e | 2014-02-28 20:31:31 +0000 | [diff] [blame] | 41 | #endif // DMCpuGMTask_DEFINED |