bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 7 | |
| 8 | #include "gm.h" |
| 9 | using namespace skiagm; |
| 10 | |
robertphillips@google.com | 8570b5c | 2012-03-20 17:40:58 +0000 | [diff] [blame] | 11 | SkString GM::gResourcePath; |
| 12 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 13 | GM::GM() { |
| 14 | fBGColor = SK_ColorWHITE; |
reed@google.com | aef7361 | 2012-11-16 13:41:45 +0000 | [diff] [blame] | 15 | fCanvasIsDeferred = false; |
reed@google.com | 7775d66 | 2012-11-27 15:15:58 +0000 | [diff] [blame] | 16 | fHaveCalledOnceBeforeDraw = false; |
commit-bot@chromium.org | f4f9df4 | 2013-09-26 20:44:24 +0000 | [diff] [blame] | 17 | fStarterMatrix.reset(); |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 18 | } |
| 19 | GM::~GM() {} |
| 20 | |
| 21 | void GM::draw(SkCanvas* canvas) { |
| 22 | this->drawBackground(canvas); |
| 23 | this->drawContent(canvas); |
| 24 | } |
| 25 | |
| 26 | void GM::drawContent(SkCanvas* canvas) { |
reed@google.com | 7775d66 | 2012-11-27 15:15:58 +0000 | [diff] [blame] | 27 | if (!fHaveCalledOnceBeforeDraw) { |
| 28 | fHaveCalledOnceBeforeDraw = true; |
| 29 | this->onOnceBeforeDraw(); |
| 30 | } |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 31 | this->onDraw(canvas); |
| 32 | } |
| 33 | |
| 34 | void GM::drawBackground(SkCanvas* canvas) { |
reed@google.com | 7775d66 | 2012-11-27 15:15:58 +0000 | [diff] [blame] | 35 | if (!fHaveCalledOnceBeforeDraw) { |
| 36 | fHaveCalledOnceBeforeDraw = true; |
| 37 | this->onOnceBeforeDraw(); |
| 38 | } |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 39 | this->onDrawBackground(canvas); |
| 40 | } |
| 41 | |
| 42 | const char* GM::shortName() { |
| 43 | if (fShortName.size() == 0) { |
| 44 | fShortName = this->onShortName(); |
| 45 | } |
| 46 | return fShortName.c_str(); |
| 47 | } |
| 48 | |
| 49 | void GM::setBGColor(SkColor color) { |
| 50 | fBGColor = color; |
| 51 | } |
| 52 | |
| 53 | void GM::onDrawBackground(SkCanvas* canvas) { |
robertphillips@google.com | ea5d8af | 2012-11-02 17:38:28 +0000 | [diff] [blame] | 54 | canvas->drawColor(fBGColor, SkXfermode::kSrc_Mode); |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 55 | } |
| 56 | |
reed@google.com | 2d6ef52 | 2012-01-03 17:20:38 +0000 | [diff] [blame] | 57 | void GM::drawSizeBounds(SkCanvas* canvas, SkColor color) { |
| 58 | SkISize size = this->getISize(); |
| 59 | SkRect r = SkRect::MakeWH(SkIntToScalar(size.width()), |
| 60 | SkIntToScalar(size.height())); |
| 61 | SkPaint paint; |
| 62 | paint.setColor(color); |
| 63 | canvas->drawRect(r, paint); |
| 64 | } |
| 65 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 66 | // need to explicitly declare this, or we get some weird infinite loop llist |
mtklein@google.com | bd6343b | 2013-09-04 17:20:18 +0000 | [diff] [blame] | 67 | template GMRegistry* SkTRegistry<GM*(*)(void*)>::gHead; |