OLD | NEW |
(Empty) | |
| 1 #ifndef DMImageTask_DEFINED |
| 2 #define DMImageTask_DEFINED |
| 3 |
| 4 #include "DMReporter.h" |
| 5 #include "DMTask.h" |
| 6 #include "DMTaskRunner.h" |
| 7 #include "SkPicture.h" |
| 8 #include "SkString.h" |
| 9 #include "SkTemplates.h" |
| 10 |
| 11 // Decode an image into its natural bitmap, perhaps decoding random subsets. |
| 12 |
| 13 namespace DM { |
| 14 |
| 15 class ImageTask : public CpuTask { |
| 16 public: |
| 17 ImageTask(Reporter*, TaskRunner*, const SkData*, SkString name, int subsets
= 0); |
| 18 |
| 19 void draw() SK_OVERRIDE; |
| 20 bool shouldSkip() const SK_OVERRIDE { return false; } |
| 21 SkString name() const SK_OVERRIDE { return fName; } |
| 22 |
| 23 private: |
| 24 SkAutoTUnref<const SkData> fEncoded; |
| 25 const SkString fName; |
| 26 int fSubsets; |
| 27 }; |
| 28 |
| 29 } // namespace DM |
| 30 |
| 31 #endif // DMImageTask_DEFINED |
OLD | NEW |