blob: c30167e572848b02f0b9b276b4f40f72ac94a0c6 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
reed@android.combd700c32009-01-05 03:34:50 +00007
tfarinaf168b862014-06-19 12:32:29 -07008#ifndef Benchmark_DEFINED
9#define Benchmark_DEFINED
10
reed@android.combd700c32009-01-05 03:34:50 +000011#include "SkPoint.h"
tfarinaf168b862014-06-19 12:32:29 -070012#include "SkRefCnt.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
commit-bot@chromium.org6adce672014-02-03 14:48:17 +000016#define DEF_BENCH(code) \
17namespace { \
tfarinaf168b862014-06-19 12:32:29 -070018static Benchmark* SK_MACRO_APPEND_LINE(factory)(void*) { code; } \
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +000019BenchRegistry SK_MACRO_APPEND_LINE(g_R_)(SK_MACRO_APPEND_LINE(factory)); \
commit-bot@chromium.org6adce672014-02-03 14:48:17 +000020}
reed@google.comb8b92ea2012-10-16 15:57:13 +000021
22/*
23 * With the above macros, you can register benches as follows (at the bottom
24 * of your .cpp)
25 *
mtklein@google.com410e6e82013-09-13 19:52:27 +000026 * DEF_BENCH(return new MyBenchmark(...))
27 * DEF_BENCH(return new MyBenchmark(...))
28 * DEF_BENCH(return new MyBenchmark(...))
reed@google.comb8b92ea2012-10-16 15:57:13 +000029 */
30
31
reed@android.combd700c32009-01-05 03:34:50 +000032class SkCanvas;
reed@android.com4bc19832009-01-19 20:08:35 +000033class SkPaint;
reed@android.combd700c32009-01-05 03:34:50 +000034
reed@android.com4e635f92009-10-19 17:39:46 +000035class SkTriState {
36public:
37 enum State {
38 kDefault,
39 kTrue,
40 kFalse
41 };
mtklein@google.comc2897432013-09-10 19:23:38 +000042 static const char* Name[];
reed@android.com4e635f92009-10-19 17:39:46 +000043};
44
tfarinaf168b862014-06-19 12:32:29 -070045class Benchmark : public SkRefCnt {
reed@android.combd700c32009-01-05 03:34:50 +000046public:
tfarinaf168b862014-06-19 12:32:29 -070047 SK_DECLARE_INST_COUNT(Benchmark)
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000048
tfarinaf168b862014-06-19 12:32:29 -070049 Benchmark();
reed@android.com4bc19832009-01-19 20:08:35 +000050
reed@android.combd700c32009-01-05 03:34:50 +000051 const char* getName();
mtklein96289052014-09-10 12:05:59 -070052 const char* getUniqueName();
reed@android.combd700c32009-01-05 03:34:50 +000053 SkIPoint getSize();
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +000054
commit-bot@chromium.org644629c2013-11-21 06:21:58 +000055 enum Backend {
56 kNonRendering_Backend,
57 kRaster_Backend,
58 kGPU_Backend,
59 kPDF_Backend,
60 };
61
62 // Call to determine whether the benchmark is intended for
63 // the rendering mode.
64 virtual bool isSuitableFor(Backend backend) {
65 return backend != kNonRendering_Backend;
66 }
67
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +000068 // Call before draw, allows the benchmark to do setup work outside of the
69 // timer. When a benchmark is repeatedly drawn, this should be called once
70 // before the initial draw.
71 void preDraw();
72
robertphillips5b693772014-11-21 06:19:36 -080073 // Called once before and after a series of draw calls to a single canvas.
74 // The setup/break down in these calls is not timed.
75 void perCanvasPreDraw(SkCanvas*);
76 void perCanvasPostDraw(SkCanvas*);
77
commit-bot@chromium.org33614712013-12-03 18:17:16 +000078 // Bench framework can tune loops to be large enough for stable timing.
79 void draw(const int loops, SkCanvas*);
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +000080
reed@android.com4bc19832009-01-19 20:08:35 +000081 void setForceAlpha(int alpha) {
82 fForceAlpha = alpha;
83 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000084
reed@android.com4e635f92009-10-19 17:39:46 +000085 void setDither(SkTriState::State state) {
86 fDither = state;
87 }
reed@android.come9d00602009-09-02 21:12:42 +000088
reed@google.comef77ec22013-05-29 15:39:54 +000089 /** Assign masks for paint-flags. These will be applied when setupPaint()
90 * is called.
91 *
92 * Performs the following on the paint:
93 * uint32_t flags = paint.getFlags();
94 * flags &= ~clearMask;
95 * flags |= orMask;
96 * paint.setFlags(flags);
97 */
98 void setPaintMasks(uint32_t orMask, uint32_t clearMask) {
99 fOrMask = orMask;
100 fClearMask = clearMask;
101 }
102
reed@android.combd700c32009-01-05 03:34:50 +0000103protected:
reed@google.com0561a3c2012-11-15 19:52:20 +0000104 virtual void setupPaint(SkPaint* paint);
reed@android.com4bc19832009-01-19 20:08:35 +0000105
reed@android.combd700c32009-01-05 03:34:50 +0000106 virtual const char* onGetName() = 0;
mtklein96289052014-09-10 12:05:59 -0700107 virtual const char* onGetUniqueName() { return this->onGetName(); }
bsalomon@google.com30e6d2c2012-08-13 14:03:31 +0000108 virtual void onPreDraw() {}
robertphillips5b693772014-11-21 06:19:36 -0800109 virtual void onPerCanvasPreDraw(SkCanvas*) {}
110 virtual void onPerCanvasPostDraw(SkCanvas*) {}
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000111 // Each bench should do its main work in a loop like this:
112 // for (int i = 0; i < loops; i++) { <work here> }
113 virtual void onDraw(const int loops, SkCanvas*) = 0;
reed@android.comf523e252009-01-26 23:15:37 +0000114
115 virtual SkIPoint onGetSize();
116
reed@android.com4bc19832009-01-19 20:08:35 +0000117private:
118 int fForceAlpha;
reed@android.com4e635f92009-10-19 17:39:46 +0000119 SkTriState::State fDither;
reed@google.comef77ec22013-05-29 15:39:54 +0000120 uint32_t fOrMask, fClearMask;
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +0000121
122 typedef SkRefCnt INHERITED;
reed@android.combd700c32009-01-05 03:34:50 +0000123};
124
tfarinaf168b862014-06-19 12:32:29 -0700125typedef SkTRegistry<Benchmark*(*)(void*)> BenchRegistry;
reed@android.comf523e252009-01-26 23:15:37 +0000126
reed@android.combd700c32009-01-05 03:34:50 +0000127#endif