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" |
bsalomon | b62da80 | 2015-01-31 07:51:14 -0800 | [diff] [blame] | 9 | #include "SkShader.h" |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 10 | using namespace skiagm; |
| 11 | |
| 12 | GM::GM() { |
commit-bot@chromium.org | b21fac1 | 2014-02-07 21:13:11 +0000 | [diff] [blame] | 13 | fMode = kGM_Mode; |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 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 | } |
tfarina | 880914c | 2014-06-09 12:05:34 -0700 | [diff] [blame] | 19 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 20 | GM::~GM() {} |
| 21 | |
| 22 | void GM::draw(SkCanvas* canvas) { |
| 23 | this->drawBackground(canvas); |
| 24 | this->drawContent(canvas); |
| 25 | } |
| 26 | |
| 27 | void GM::drawContent(SkCanvas* canvas) { |
reed@google.com | 7775d66 | 2012-11-27 15:15:58 +0000 | [diff] [blame] | 28 | if (!fHaveCalledOnceBeforeDraw) { |
| 29 | fHaveCalledOnceBeforeDraw = true; |
| 30 | this->onOnceBeforeDraw(); |
| 31 | } |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 32 | this->onDraw(canvas); |
| 33 | } |
| 34 | |
| 35 | void GM::drawBackground(SkCanvas* canvas) { |
reed@google.com | 7775d66 | 2012-11-27 15:15:58 +0000 | [diff] [blame] | 36 | if (!fHaveCalledOnceBeforeDraw) { |
| 37 | fHaveCalledOnceBeforeDraw = true; |
| 38 | this->onOnceBeforeDraw(); |
| 39 | } |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 40 | this->onDrawBackground(canvas); |
| 41 | } |
| 42 | |
commit-bot@chromium.org | 38aeb0f | 2014-02-26 23:01:57 +0000 | [diff] [blame] | 43 | const char* GM::getName() { |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 44 | if (fShortName.size() == 0) { |
| 45 | fShortName = this->onShortName(); |
| 46 | } |
| 47 | return fShortName.c_str(); |
| 48 | } |
| 49 | |
| 50 | void GM::setBGColor(SkColor color) { |
| 51 | fBGColor = color; |
| 52 | } |
| 53 | |
reed | 76113a9 | 2015-02-02 12:55:02 -0800 | [diff] [blame] | 54 | bool GM::animate(const SkAnimTimer& timer) { |
| 55 | return this->onAnimate(timer); |
reed | d9adfe6 | 2015-02-01 19:01:04 -0800 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | ///////////////////////////////////////////////////////////////////////////////////////////// |
| 59 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 60 | void GM::onDrawBackground(SkCanvas* canvas) { |
robertphillips@google.com | ea5d8af | 2012-11-02 17:38:28 +0000 | [diff] [blame] | 61 | canvas->drawColor(fBGColor, SkXfermode::kSrc_Mode); |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 62 | } |
| 63 | |
reed@google.com | 2d6ef52 | 2012-01-03 17:20:38 +0000 | [diff] [blame] | 64 | void GM::drawSizeBounds(SkCanvas* canvas, SkColor color) { |
| 65 | SkISize size = this->getISize(); |
| 66 | SkRect r = SkRect::MakeWH(SkIntToScalar(size.width()), |
| 67 | SkIntToScalar(size.height())); |
| 68 | SkPaint paint; |
| 69 | paint.setColor(color); |
| 70 | canvas->drawRect(r, paint); |
| 71 | } |
| 72 | |
halcanary | 2a24338 | 2015-09-09 08:16:41 -0700 | [diff] [blame] | 73 | void GM::DrawGpuOnlyMessage(SkCanvas* canvas) { |
bsalomon | b62da80 | 2015-01-31 07:51:14 -0800 | [diff] [blame] | 74 | SkBitmap bmp; |
| 75 | bmp.allocN32Pixels(128, 64); |
| 76 | SkCanvas bmpCanvas(bmp); |
| 77 | bmpCanvas.drawColor(SK_ColorWHITE); |
| 78 | SkPaint paint; |
| 79 | paint.setAntiAlias(true); |
| 80 | paint.setTextSize(20); |
| 81 | paint.setColor(SK_ColorRED); |
caryclark | f597c42 | 2015-07-28 10:37:53 -0700 | [diff] [blame] | 82 | sk_tool_utils::set_portable_typeface(&paint); |
bsalomon | b62da80 | 2015-01-31 07:51:14 -0800 | [diff] [blame] | 83 | static const char kTxt[] = "GPU Only"; |
| 84 | bmpCanvas.drawText(kTxt, strlen(kTxt), 20, 40, paint); |
| 85 | SkMatrix localM; |
| 86 | localM.setRotate(35.f); |
| 87 | localM.postTranslate(10.f, 0.f); |
reed | 8a21c9f | 2016-03-08 18:50:00 -0800 | [diff] [blame] | 88 | paint.setShader(SkShader::MakeBitmapShader(bmp, SkShader::kMirror_TileMode, |
| 89 | SkShader::kMirror_TileMode, |
| 90 | &localM)); |
bsalomon | b62da80 | 2015-01-31 07:51:14 -0800 | [diff] [blame] | 91 | paint.setFilterQuality(kMedium_SkFilterQuality); |
| 92 | canvas->drawPaint(paint); |
| 93 | return; |
| 94 | } |
| 95 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 96 | // need to explicitly declare this, or we get some weird infinite loop llist |
tfarina | bcbc178 | 2014-06-18 14:32:48 -0700 | [diff] [blame] | 97 | template GMRegistry* GMRegistry::gHead; |
halcanary | f62c634 | 2015-01-12 15:27:46 -0800 | [diff] [blame] | 98 | |
| 99 | void skiagm::SimpleGM::onDraw(SkCanvas* canvas) { |
| 100 | fDrawProc(canvas); |
| 101 | } |
| 102 | |
| 103 | SkISize skiagm::SimpleGM::onISize() { |
| 104 | return fSize; |
| 105 | } |
| 106 | |
| 107 | SkString skiagm::SimpleGM::onShortName() { |
| 108 | return fName; |
| 109 | } |
reed | d9adfe6 | 2015-02-01 19:01:04 -0800 | [diff] [blame] | 110 | |