epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
| 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.com | 00dae86 | 2009-06-10 15:38:48 +0000 | [diff] [blame] | 8 | #ifndef skiagm_DEFINED |
| 9 | #define skiagm_DEFINED |
| 10 | |
epoger@google.com | d4af56c | 2011-07-25 16:27:59 +0000 | [diff] [blame] | 11 | #include "SkBitmap.h" |
reed@android.com | dd0ac28 | 2009-06-20 02:38:16 +0000 | [diff] [blame] | 12 | #include "SkCanvas.h" |
epoger@google.com | d4af56c | 2011-07-25 16:27:59 +0000 | [diff] [blame] | 13 | #include "SkDevice.h" |
reed@android.com | dd0ac28 | 2009-06-20 02:38:16 +0000 | [diff] [blame] | 14 | #include "SkPaint.h" |
reed@android.com | dd0ac28 | 2009-06-20 02:38:16 +0000 | [diff] [blame] | 15 | #include "SkSize.h" |
reed@android.com | 00dae86 | 2009-06-10 15:38:48 +0000 | [diff] [blame] | 16 | #include "SkString.h" |
| 17 | #include "SkTRegistry.h" |
| 18 | |
| 19 | namespace skiagm { |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 20 | |
robertphillips@google.com | 8570b5c | 2012-03-20 17:40:58 +0000 | [diff] [blame] | 21 | static inline SkISize make_isize(int w, int h) { |
| 22 | SkISize sz; |
| 23 | sz.set(w, h); |
| 24 | return sz; |
| 25 | } |
reed@android.com | 00dae86 | 2009-06-10 15:38:48 +0000 | [diff] [blame] | 26 | |
| 27 | class GM { |
| 28 | public: |
| 29 | GM(); |
| 30 | virtual ~GM(); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 31 | |
reed@google.com | fbc2117 | 2011-09-19 19:08:33 +0000 | [diff] [blame] | 32 | enum Flags { |
| 33 | kSkipPDF_Flag = 1 << 0, |
scroggo@google.com | 5af9b20 | 2012-06-04 17:17:36 +0000 | [diff] [blame] | 34 | kSkipPicture_Flag = 1 << 1, |
scroggo@google.com | 6325886 | 2012-08-15 16:32:19 +0000 | [diff] [blame] | 35 | kSkipPipe_Flag = 1 << 2, |
| 36 | kSkipTiled_Flag = 1 << 3, |
reed@google.com | fbc2117 | 2011-09-19 19:08:33 +0000 | [diff] [blame] | 37 | }; |
| 38 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 39 | void draw(SkCanvas*); |
| 40 | void drawBackground(SkCanvas*); |
| 41 | void drawContent(SkCanvas*); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 42 | |
robertphillips@google.com | 8570b5c | 2012-03-20 17:40:58 +0000 | [diff] [blame] | 43 | SkISize getISize() { return this->onISize(); } |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 44 | const char* shortName(); |
reed@android.com | 00dae86 | 2009-06-10 15:38:48 +0000 | [diff] [blame] | 45 | |
reed@google.com | fbc2117 | 2011-09-19 19:08:33 +0000 | [diff] [blame] | 46 | uint32_t getFlags() const { |
| 47 | return this->onGetFlags(); |
| 48 | } |
vandebo@chromium.org | 79d3cb4 | 2012-03-21 17:34:30 +0000 | [diff] [blame] | 49 | |
| 50 | // TODO(vandebo) Instead of exposing this, we should run all the GMs |
| 51 | // with and without an initial transform. |
| 52 | // Most GMs will return the identity matrix, but some PDFs tests |
| 53 | // require setting the initial transform. |
| 54 | SkMatrix getInitialTransform() const { |
| 55 | return this->onGetInitialTransform(); |
| 56 | } |
| 57 | |
reed@google.com | b4b49cc | 2011-12-06 16:15:42 +0000 | [diff] [blame] | 58 | SkColor getBGColor() const { return fBGColor; } |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 59 | void setBGColor(SkColor); |
reed@google.com | 30db599 | 2011-08-29 17:41:02 +0000 | [diff] [blame] | 60 | |
reed@google.com | 2d6ef52 | 2012-01-03 17:20:38 +0000 | [diff] [blame] | 61 | // helper: fill a rect in the specified color based on the |
| 62 | // GM's getISize bounds. |
| 63 | void drawSizeBounds(SkCanvas*, SkColor); |
| 64 | |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 65 | static void SetResourcePath(const char* resourcePath) { |
| 66 | gResourcePath = resourcePath; |
robertphillips@google.com | 8570b5c | 2012-03-20 17:40:58 +0000 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | protected: |
| 70 | static SkString gResourcePath; |
| 71 | |
| 72 | virtual void onDraw(SkCanvas*) = 0; |
| 73 | virtual void onDrawBackground(SkCanvas*); |
| 74 | virtual SkISize onISize() = 0; |
reed@android.com | 8015dd8 | 2009-06-21 00:49:18 +0000 | [diff] [blame] | 75 | virtual SkString onShortName() = 0; |
reed@google.com | fbc2117 | 2011-09-19 19:08:33 +0000 | [diff] [blame] | 76 | virtual uint32_t onGetFlags() const { return 0; } |
vandebo@chromium.org | 79d3cb4 | 2012-03-21 17:34:30 +0000 | [diff] [blame] | 77 | virtual SkMatrix onGetInitialTransform() const { return SkMatrix::I(); } |
| 78 | |
reed@android.com | 8015dd8 | 2009-06-21 00:49:18 +0000 | [diff] [blame] | 79 | private: |
| 80 | SkString fShortName; |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 81 | SkColor fBGColor; |
reed@android.com | 00dae86 | 2009-06-10 15:38:48 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | typedef SkTRegistry<GM*, void*> GMRegistry; |
| 85 | } |
| 86 | |
| 87 | #endif |