Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: dm/DMImageTask.h

Issue 802793002: Add image decoding mode to DM. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: subsets Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698