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

Side by Side Diff: dm/DMWriteTask.h

Issue 179233005: DM: make GPU tasks multithreaded again. Big refactor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: default 1 GPU thread Created 6 years, 9 months 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
« no previous file with comments | « dm/DMTileGridTask.cpp ('k') | dm/DMWriteTask.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef DMWriteTask_DEFINED 1 #ifndef DMWriteTask_DEFINED
2 #define DMWriteTask_DEFINED 2 #define DMWriteTask_DEFINED
3 3
4 #include "DMExpectations.h" 4 #include "DMExpectations.h"
5 #include "DMTask.h" 5 #include "DMTask.h"
6 #include "SkBitmap.h" 6 #include "SkBitmap.h"
7 #include "SkString.h" 7 #include "SkString.h"
8 #include "SkTArray.h" 8 #include "SkTArray.h"
9 9
10 10
11 // Writes a bitmap to a file. 11 // Writes a bitmap to a file.
12 12
13 namespace DM { 13 namespace DM {
14 14
15 class WriteTask : public Task { 15 class WriteTask : public CpuTask {
16 16
17 public: 17 public:
18 WriteTask(const Task& parent, // WriteTask must be a child Task. Pass its parent here. 18 WriteTask(const Task& parent, // WriteTask must be a child Task. Pass its parent here.
19 SkBitmap bitmap); // Bitmap to write. 19 SkBitmap bitmap); // Bitmap to write.
20 20
21 virtual void draw() SK_OVERRIDE; 21 virtual void draw() SK_OVERRIDE;
22 virtual bool usesGpu() const SK_OVERRIDE { return false; }
23 virtual bool shouldSkip() const SK_OVERRIDE; 22 virtual bool shouldSkip() const SK_OVERRIDE;
24 virtual SkString name() const SK_OVERRIDE; 23 virtual SkString name() const SK_OVERRIDE;
25 24
26 // Reads image files WriteTask wrote under root and compares them with bitma p. 25 // Reads image files WriteTask wrote under root and compares them with bitma p.
27 class Expectations : public DM::Expectations { 26 class Expectations : public DM::Expectations {
28 public: 27 public:
29 explicit Expectations(const char* root) : fRoot(root) {} 28 explicit Expectations(const char* root) : fRoot(root) {}
30 29
31 bool check(const Task& task, SkBitmap bitmap) const SK_OVERRIDE; 30 bool check(const Task& task, SkBitmap bitmap) const SK_OVERRIDE;
32 private: 31 private:
33 const char* fRoot; 32 const char* fRoot;
34 }; 33 };
35 34
36 private: 35 private:
37 SkTArray<SkString> fSuffixes; 36 SkTArray<SkString> fSuffixes;
38 SkString fGmName; 37 SkString fGmName;
39 const SkBitmap fBitmap; 38 const SkBitmap fBitmap;
40 39
41 void makeDirOrFail(SkString dir); 40 void makeDirOrFail(SkString dir);
42 }; 41 };
43 42
44 } // namespace DM 43 } // namespace DM
45 44
46 #endif // DMWriteTask_DEFINED 45 #endif // DMWriteTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DMTileGridTask.cpp ('k') | dm/DMWriteTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698