blob: 2e4b602f90944f8e4315a6e1b3488bb57a4d65b0 [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 */
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +00007
reed@android.com00dae862009-06-10 15:38:48 +00008#ifndef skiagm_DEFINED
9#define skiagm_DEFINED
10
epoger@google.comd4af56c2011-07-25 16:27:59 +000011#include "SkBitmap.h"
reed@android.comdd0ac282009-06-20 02:38:16 +000012#include "SkCanvas.h"
13#include "SkPaint.h"
reed@android.comdd0ac282009-06-20 02:38:16 +000014#include "SkSize.h"
reed@android.com00dae862009-06-10 15:38:48 +000015#include "SkString.h"
Mike Reedab273fa2017-01-11 13:58:55 -050016#include "../tools/Registry.h"
caryclark5fb6bd42014-06-23 11:25:00 -070017#include "sk_tool_utils.h"
Mike Reedebfce6d2016-12-12 10:02:12 -050018#include "SkClipOpPriv.h"
reed@android.com00dae862009-06-10 15:38:48 +000019
reed76113a92015-02-02 12:55:02 -080020class SkAnimTimer;
bsalomon4ee6bd82015-05-27 13:23:23 -070021struct GrContextOptions;
mtklein@google.com62b50b72013-09-16 20:42:15 +000022
reed@google.com4117a242012-10-30 20:26:58 +000023#define DEF_GM(code) \
sugoi@google.com0f0d9b72013-02-27 15:41:12 +000024 static skiagm::GM* SK_MACRO_APPEND_LINE(F_)(void*) { code; } \
reed@google.com4117a242012-10-30 20:26:58 +000025 static skiagm::GMRegistry SK_MACRO_APPEND_LINE(R_)(SK_MACRO_APPEND_LINE(F_));
26
halcanary2a243382015-09-09 08:16:41 -070027// a Simple GM is a rendering test that does not store state between
28// rendering calls or make use of the onOnceBeforeDraw() virtual; it
29// consists of:
30// * A single void(*)(SkCanvas*) function.
31// * A name.
32// * Prefered width and height.
33// * Optionally, a background color (default is white).
34#define DEF_SIMPLE_GM(NAME, CANVAS, W, H) \
35 DEF_SIMPLE_GM_BG_NAME(NAME, CANVAS, W, H, SK_ColorWHITE, SkString(#NAME))
36#define DEF_SIMPLE_GM_BG(NAME, CANVAS, W, H, BGCOLOR)\
37 DEF_SIMPLE_GM_BG_NAME(NAME, CANVAS, W, H, BGCOLOR, SkString(#NAME))
mtklein2843c422016-06-09 12:20:25 -070038#define DEF_SIMPLE_GM_BG_NAME(NAME, CANVAS, W, H, BGCOLOR, NAME_STR) \
39 static void SK_MACRO_CONCAT(NAME, _GM)(SkCanvas * CANVAS); \
40 DEF_GM(return new skiagm::SimpleGM(NAME_STR, SK_MACRO_CONCAT(NAME, _GM), \
41 SkISize::Make(W, H), BGCOLOR);) \
halcanary385fe4d2015-08-26 13:07:48 -070042 void SK_MACRO_CONCAT(NAME, _GM)(SkCanvas * CANVAS)
halcanary30b83d42014-10-26 05:23:53 -070043
reed@android.com00dae862009-06-10 15:38:48 +000044namespace skiagm {
rmistry@google.comd6176b02012-08-23 18:14:13 +000045
reed@android.com00dae862009-06-10 15:38:48 +000046 class GM {
47 public:
48 GM();
49 virtual ~GM();
rmistry@google.comd6176b02012-08-23 18:14:13 +000050
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +000051 enum Mode {
52 kGM_Mode,
53 kSample_Mode,
54 kBench_Mode,
55 };
56
57 void setMode(Mode mode) { fMode = mode; }
58 Mode getMode() const { return fMode; }
59
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000060 void draw(SkCanvas*);
61 void drawBackground(SkCanvas*);
62 void drawContent(SkCanvas*);
rmistry@google.comd6176b02012-08-23 18:14:13 +000063
mtkleinf4ba3212015-01-28 15:32:24 -080064 SkISize getISize() { return this->onISize(); }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +000065 const char* getName();
reed@android.com00dae862009-06-10 15:38:48 +000066
mtkleincf5d9c92015-01-23 10:31:45 -080067 virtual bool runAsBench() const { return false; }
68
reed@google.com487b5602013-02-01 15:01:24 +000069 SkScalar width() {
70 return SkIntToScalar(this->getISize().width());
71 }
72 SkScalar height() {
scroggo@google.comab026272013-04-12 22:14:03 +000073 return SkIntToScalar(this->getISize().height());
reed@google.com487b5602013-02-01 15:01:24 +000074 }
75
vandebo@chromium.org79d3cb42012-03-21 17:34:30 +000076 // TODO(vandebo) Instead of exposing this, we should run all the GMs
77 // with and without an initial transform.
78 // Most GMs will return the identity matrix, but some PDFs tests
79 // require setting the initial transform.
80 SkMatrix getInitialTransform() const {
commit-bot@chromium.orgf4f9df42013-09-26 20:44:24 +000081 SkMatrix matrix = fStarterMatrix;
82 matrix.preConcat(this->onGetInitialTransform());
83 return matrix;
vandebo@chromium.org79d3cb42012-03-21 17:34:30 +000084 }
85
reed@google.comb4b49cc2011-12-06 16:15:42 +000086 SkColor getBGColor() const { return fBGColor; }
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000087 void setBGColor(SkColor);
reed@google.com30db5992011-08-29 17:41:02 +000088
reed@google.com2d6ef522012-01-03 17:20:38 +000089 // helper: fill a rect in the specified color based on the
90 // GM's getISize bounds.
91 void drawSizeBounds(SkCanvas*, SkColor);
92
reed@google.comaef73612012-11-16 13:41:45 +000093 bool isCanvasDeferred() const { return fCanvasIsDeferred; }
94 void setCanvasIsDeferred(bool isDeferred) {
95 fCanvasIsDeferred = isDeferred;
96 }
97
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +000098 const SkMatrix& getStarterMatrix() { return fStarterMatrix; }
99 void setStarterMatrix(const SkMatrix& matrix) {
100 fStarterMatrix = matrix;
101 }
commit-bot@chromium.orgf4f9df42013-09-26 20:44:24 +0000102
reed76113a92015-02-02 12:55:02 -0800103 bool animate(const SkAnimTimer&);
robertphillips05a4cf52016-09-08 09:02:43 -0700104 bool handleKey(SkUnichar uni) {
105 return this->onHandleKey(uni);
106 }
reedd9adfe62015-02-01 19:01:04 -0800107
bsalomon4ee6bd82015-05-27 13:23:23 -0700108 virtual void modifyGrContextOptions(GrContextOptions* options) {}
109
bsalomonb62da802015-01-31 07:51:14 -0800110 /** draws a standard message that the GM is only intended to be used with the GPU.*/
halcanary2a243382015-09-09 08:16:41 -0700111 static void DrawGpuOnlyMessage(SkCanvas*);
112
113 protected:
reed@google.com7775d662012-11-27 15:15:58 +0000114 virtual void onOnceBeforeDraw() {}
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000115 virtual void onDraw(SkCanvas*) = 0;
116 virtual void onDrawBackground(SkCanvas*);
117 virtual SkISize onISize() = 0;
reed@android.com8015dd82009-06-21 00:49:18 +0000118 virtual SkString onShortName() = 0;
mtklein1c402922015-01-23 11:07:07 -0800119
reed76113a92015-02-02 12:55:02 -0800120 virtual bool onAnimate(const SkAnimTimer&) { return false; }
robertphillips05a4cf52016-09-08 09:02:43 -0700121 virtual bool onHandleKey(SkUnichar uni) { return false; }
vandebo@chromium.org79d3cb42012-03-21 17:34:30 +0000122 virtual SkMatrix onGetInitialTransform() const { return SkMatrix::I(); }
123
reed@android.com8015dd82009-06-21 00:49:18 +0000124 private:
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000125 Mode fMode;
reed@android.com8015dd82009-06-21 00:49:18 +0000126 SkString fShortName;
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000127 SkColor fBGColor;
reed@google.comaef73612012-11-16 13:41:45 +0000128 bool fCanvasIsDeferred; // work-around problem in srcmode.cpp
reed@google.com7775d662012-11-27 15:15:58 +0000129 bool fHaveCalledOnceBeforeDraw;
commit-bot@chromium.orgf4f9df42013-09-26 20:44:24 +0000130 SkMatrix fStarterMatrix;
reed@android.com00dae862009-06-10 15:38:48 +0000131 };
132
Mike Reedab273fa2017-01-11 13:58:55 -0500133 typedef sk_tools::Registry<GM*(*)(void*)> GMRegistry;
halcanaryf62c6342015-01-12 15:27:46 -0800134
135 class SimpleGM : public skiagm::GM {
136 public:
137 SimpleGM(const SkString& name,
138 void (*drawProc)(SkCanvas*),
halcanary2a243382015-09-09 08:16:41 -0700139 const SkISize& size,
140 SkColor backgroundColor)
141 : fName(name), fDrawProc(drawProc), fSize(size) {
142 if (backgroundColor != SK_ColorWHITE) {
143 this->setBGColor(backgroundColor);
144 }
145 }
halcanaryf62c6342015-01-12 15:27:46 -0800146 protected:
mtklein36352bf2015-03-25 18:17:31 -0700147 void onDraw(SkCanvas* canvas) override;
148 SkISize onISize() override;
149 SkString onShortName() override;
halcanaryf62c6342015-01-12 15:27:46 -0800150 private:
151 SkString fName;
152 void (*fDrawProc)(SkCanvas*);
153 SkISize fSize;
154 };
reed@android.com00dae862009-06-10 15:38:48 +0000155}
156
157#endif