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

Side by Side Diff: dm/DMSerializeTask.cpp

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/DMSerializeTask.h ('k') | dm/DMTask.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "DMSerializeTask.h" 1 #include "DMSerializeTask.h"
2 #include "DMUtil.h" 2 #include "DMUtil.h"
3 #include "DMWriteTask.h" 3 #include "DMWriteTask.h"
4 4
5 #include "SkCommandLineFlags.h" 5 #include "SkCommandLineFlags.h"
6 #include "SkPicture.h" 6 #include "SkPicture.h"
7 #include "SkPixelRef.h" 7 #include "SkPixelRef.h"
8 8
9 DEFINE_bool(serialize, true, "If true, run picture serialization tests."); 9 DEFINE_bool(serialize, true, "If true, run picture serialization tests.");
10 10
11 namespace DM { 11 namespace DM {
12 12
13 SerializeTask::SerializeTask(const Task& parent, 13 SerializeTask::SerializeTask(const Task& parent,
14 skiagm::GM* gm, 14 skiagm::GM* gm,
15 SkBitmap reference) 15 SkBitmap reference)
16 : Task(parent) 16 : CpuTask(parent)
17 , fName(UnderJoin(parent.name().c_str(), "serialize")) 17 , fName(UnderJoin(parent.name().c_str(), "serialize"))
18 , fGM(gm) 18 , fGM(gm)
19 , fReference(reference) 19 , fReference(reference)
20 {} 20 {}
21 21
22 void SerializeTask::draw() { 22 void SerializeTask::draw() {
23 SkPicture recorded; 23 SkPicture recorded;
24 RecordPicture(fGM.get(), &recorded); 24 RecordPicture(fGM.get(), &recorded);
25 25
26 SkDynamicMemoryWStream wStream; 26 SkDynamicMemoryWStream wStream;
27 recorded.serialize(&wStream, NULL); 27 recorded.serialize(&wStream, NULL);
28 SkAutoTUnref<SkStream> rStream(wStream.detachAsStream()); 28 SkAutoTUnref<SkStream> rStream(wStream.detachAsStream());
29 SkAutoTUnref<SkPicture> reconstructed(SkPicture::CreateFromStream(rStream)); 29 SkAutoTUnref<SkPicture> reconstructed(SkPicture::CreateFromStream(rStream));
30 30
31 SkBitmap bitmap; 31 SkBitmap bitmap;
32 SetupBitmap(fReference.colorType(), fGM.get(), &bitmap); 32 SetupBitmap(fReference.colorType(), fGM.get(), &bitmap);
33 DrawPicture(reconstructed, &bitmap); 33 DrawPicture(reconstructed, &bitmap);
34 if (!BitmapsEqual(bitmap, fReference)) { 34 if (!BitmapsEqual(bitmap, fReference)) {
35 this->fail(); 35 this->fail();
36 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap))); 36 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
37 } 37 }
38 } 38 }
39 39
40 bool SerializeTask::shouldSkip() const { 40 bool SerializeTask::shouldSkip() const {
41 return !FLAGS_serialize || fGM->getFlags() & skiagm::GM::kSkipPicture_Flag; 41 return !FLAGS_serialize || fGM->getFlags() & skiagm::GM::kSkipPicture_Flag;
42 } 42 }
43 43
44 } // namespace DM 44 } // namespace DM
OLDNEW
« no previous file with comments | « dm/DMSerializeTask.h ('k') | dm/DMTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698