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

Side by Side Diff: dm/DMBenchTask.h

Issue 399463003: Remove benches from DM. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 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/DM.cpp ('k') | dm/DMBenchTask.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef DMBenchTask_DEFINED
2 #define DMBenchTask_DEFINED
3
4 #include "Benchmark.h"
5 #include "DMReporter.h"
6 #include "DMTask.h"
7 #include "DMTaskRunner.h"
8 #include "SkString.h"
9 #include "SkTemplates.h"
10
11 // Tasks that run an Benchmark once as a check that it doesn't crash.
12
13 namespace DM {
14
15 class NonRenderingBenchTask : public CpuTask {
16 public:
17 NonRenderingBenchTask(const char* config, Reporter*, TaskRunner*, BenchRegis try::Factory);
18
19 virtual void draw() SK_OVERRIDE;
20 virtual bool shouldSkip() const SK_OVERRIDE;
21 virtual SkString name() const SK_OVERRIDE { return fName; }
22
23 private:
24 SkAutoTDelete<Benchmark> fBench;
25 const SkString fName;
26 };
27
28 class CpuBenchTask : public CpuTask {
29 public:
30 CpuBenchTask(const char* config, Reporter*, TaskRunner*, BenchRegistry::Fact ory, SkColorType);
31
32 virtual void draw() SK_OVERRIDE;
33 virtual bool shouldSkip() const SK_OVERRIDE;
34 virtual SkString name() const SK_OVERRIDE { return fName; }
35
36 private:
37 SkAutoTDelete<Benchmark> fBench;
38 const SkString fName;
39 const SkColorType fColorType;
40 };
41
42 class GpuBenchTask : public GpuTask {
43 public:
44 GpuBenchTask(const char* config,
45 Reporter*,
46 TaskRunner*,
47 BenchRegistry::Factory,
48 GrContextFactory::GLContextType,
49 GrGLStandard gpuAPI,
50 int sampleCount);
51
52 virtual void draw(GrContextFactory*) SK_OVERRIDE;
53 virtual bool shouldSkip() const SK_OVERRIDE;
54 virtual SkString name() const SK_OVERRIDE { return fName; }
55
56 private:
57 SkAutoTDelete<Benchmark> fBench;
58 const SkString fName;
59 const GrContextFactory::GLContextType fContextType;
60 const GrGLStandard fGpuAPI;
61 int fSampleCount;
62 };
63
64 } // namespace DM
65
66 #endif // DMBenchTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | dm/DMBenchTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698