blob: ec40077527b777285d6085949194a459fd844f00 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.combd700c32009-01-05 03:34:50 +00008#ifndef SkBenchmark_DEFINED
9#define SkBenchmark_DEFINED
10
11#include "SkRefCnt.h"
12#include "SkPoint.h"
scroggo@google.com111fd112013-09-25 21:42:12 +000013#include "SkString.h"
reed@android.comf523e252009-01-26 23:15:37 +000014#include "SkTRegistry.h"
reed@android.combd700c32009-01-05 03:34:50 +000015
reed@google.comb8b92ea2012-10-16 15:57:13 +000016#define DEF_BENCH(code) \
mtklein@google.com410e6e82013-09-13 19:52:27 +000017static SkBenchmark* SK_MACRO_APPEND_LINE(F_)() { code; } \
reed@google.comb8b92ea2012-10-16 15:57:13 +000018static BenchRegistry SK_MACRO_APPEND_LINE(R_)(SK_MACRO_APPEND_LINE(F_));
19
20/*
21 * With the above macros, you can register benches as follows (at the bottom
22 * of your .cpp)
23 *
mtklein@google.com410e6e82013-09-13 19:52:27 +000024 * DEF_BENCH(return new MyBenchmark(...))
25 * DEF_BENCH(return new MyBenchmark(...))
26 * DEF_BENCH(return new MyBenchmark(...))
reed@google.comb8b92ea2012-10-16 15:57:13 +000027 */
28
29
reed@android.combd700c32009-01-05 03:34:50 +000030class SkCanvas;
reed@android.com4bc19832009-01-19 20:08:35 +000031class SkPaint;
reed@android.combd700c32009-01-05 03:34:50 +000032
reed@android.com4e635f92009-10-19 17:39:46 +000033class SkTriState {
34public:
35 enum State {
36 kDefault,
37 kTrue,
38 kFalse
39 };
mtklein@google.comc2897432013-09-10 19:23:38 +000040 static const char* Name[];
reed@android.com4e635f92009-10-19 17:39:46 +000041};
42
reed@android.combd700c32009-01-05 03:34:50 +000043class SkBenchmark : public SkRefCnt {
44public:
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000045 SK_DECLARE_INST_COUNT(SkBenchmark)
46
mtklein@google.com410e6e82013-09-13 19:52:27 +000047 SkBenchmark();
reed@android.com4bc19832009-01-19 20:08:35 +000048
reed@android.combd700c32009-01-05 03:34:50 +000049 const char* getName();
50 SkIPoint getSize();
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +000051
52 // Call before draw, allows the benchmark to do setup work outside of the
53 // timer. When a benchmark is repeatedly drawn, this should be called once
54 // before the initial draw.
55 void preDraw();
56
reed@android.combd700c32009-01-05 03:34:50 +000057 void draw(SkCanvas*);
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +000058
59 // Call after draw, allows the benchmark to do cleanup work outside of the
60 // timer. When a benchmark is repeatedly drawn, this is only called once
61 // after the last draw.
62 void postDraw();
63
reed@android.com4bc19832009-01-19 20:08:35 +000064 void setForceAlpha(int alpha) {
65 fForceAlpha = alpha;
66 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000067
reed@android.com4bc19832009-01-19 20:08:35 +000068 void setForceAA(bool aa) {
69 fForceAA = aa;
70 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000071
reed@android.com29348cb2009-08-04 18:17:15 +000072 void setForceFilter(bool filter) {
73 fForceFilter = filter;
74 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000075
reed@android.com4e635f92009-10-19 17:39:46 +000076 void setDither(SkTriState::State state) {
77 fDither = state;
78 }
reed@android.come9d00602009-09-02 21:12:42 +000079
tomhudson@google.com9dc27132012-09-13 15:50:24 +000080 /** If true; the benchmark does rendering; if false, the benchmark
81 doesn't, and so need not be re-run in every different rendering
82 mode. */
83 bool isRendering() {
84 return fIsRendering;
85 }
86
reed@google.comef77ec22013-05-29 15:39:54 +000087 /** Assign masks for paint-flags. These will be applied when setupPaint()
88 * is called.
89 *
90 * Performs the following on the paint:
91 * uint32_t flags = paint.getFlags();
92 * flags &= ~clearMask;
93 * flags |= orMask;
94 * paint.setFlags(flags);
95 */
96 void setPaintMasks(uint32_t orMask, uint32_t clearMask) {
97 fOrMask = orMask;
98 fClearMask = clearMask;
99 }
100
mtklein@google.comc2897432013-09-10 19:23:38 +0000101 // The bench framework calls this to control the runtime of a bench.
102 void setLoops(int loops) {
103 fLoops = loops;
104 }
105
106 // Each bench should do its main work in a loop like this:
107 // for (int i = 0; i < this->getLoops(); i++) { <work here> }
108 int getLoops() const { return fLoops; }
reed@google.comef77ec22013-05-29 15:39:54 +0000109
scroggo@google.com111fd112013-09-25 21:42:12 +0000110 static void SetResourcePath(const char* resPath) { gResourcePath.set(resPath); }
111
112 static SkString& GetResourcePath() { return gResourcePath; }
113
reed@android.combd700c32009-01-05 03:34:50 +0000114protected:
reed@google.com0561a3c2012-11-15 19:52:20 +0000115 virtual void setupPaint(SkPaint* paint);
reed@android.com4bc19832009-01-19 20:08:35 +0000116
reed@android.combd700c32009-01-05 03:34:50 +0000117 virtual const char* onGetName() = 0;
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +0000118 virtual void onPreDraw() {}
reed@android.combd700c32009-01-05 03:34:50 +0000119 virtual void onDraw(SkCanvas*) = 0;
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +0000120 virtual void onPostDraw() {}
reed@android.comf523e252009-01-26 23:15:37 +0000121
122 virtual SkIPoint onGetSize();
tomhudson@google.com9dc27132012-09-13 15:50:24 +0000123 /// Defaults to true.
124 bool fIsRendering;
reed@android.comf523e252009-01-26 23:15:37 +0000125
reed@android.com4bc19832009-01-19 20:08:35 +0000126private:
127 int fForceAlpha;
128 bool fForceAA;
reed@android.com29348cb2009-08-04 18:17:15 +0000129 bool fForceFilter;
reed@android.com4e635f92009-10-19 17:39:46 +0000130 SkTriState::State fDither;
reed@google.comef77ec22013-05-29 15:39:54 +0000131 uint32_t fOrMask, fClearMask;
mtklein@google.comc2897432013-09-10 19:23:38 +0000132 int fLoops;
scroggo@google.com111fd112013-09-25 21:42:12 +0000133 static SkString gResourcePath;
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +0000134
135 typedef SkRefCnt INHERITED;
reed@android.combd700c32009-01-05 03:34:50 +0000136};
137
mtklein@google.com410e6e82013-09-13 19:52:27 +0000138typedef SkTRegistry<SkBenchmark*(*)()> BenchRegistry;
reed@android.comf523e252009-01-26 23:15:37 +0000139
reed@android.combd700c32009-01-05 03:34:50 +0000140#endif