epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +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 | */ |
commit-bot@chromium.org | 83f23d8 | 2014-05-22 12:27:41 +0000 | [diff] [blame] | 7 | |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 8 | #include "gm.h" |
Mike Klein | 33d2055 | 2017-03-22 13:47:51 -0400 | [diff] [blame] | 9 | #include "sk_tool_utils.h" |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 10 | #include "SkCanvas.h" |
| 11 | #include "SkGradientShader.h" |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 12 | #include "SkPath.h" |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 13 | |
| 14 | namespace skiagm { |
| 15 | |
commit-bot@chromium.org | dac5225 | 2014-02-17 21:21:46 +0000 | [diff] [blame] | 16 | static void makebm(SkBitmap* bm, int w, int h) { |
| 17 | bm->allocN32Pixels(w, h); |
junov@google.com | dbfac8a | 2012-12-06 21:47:40 +0000 | [diff] [blame] | 18 | bm->eraseColor(SK_ColorTRANSPARENT); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 19 | |
| 20 | SkCanvas canvas(*bm); |
epoger@google.com | b28b5e4 | 2011-05-24 14:51:57 +0000 | [diff] [blame] | 21 | SkScalar s = SkIntToScalar(SkMin32(w, h)); |
reed@google.com | 3869007 | 2011-01-26 01:44:18 +0000 | [diff] [blame] | 22 | SkPoint pts[] = { { 0, 0 }, { s, s } }; |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 23 | SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE }; |
| 24 | SkScalar pos[] = { 0, SK_Scalar1/2, SK_Scalar1 }; |
| 25 | SkPaint paint; |
| 26 | |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 27 | paint.setDither(true); |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 28 | paint.setShader(SkGradientShader::MakeLinear(pts, colors, pos, SK_ARRAY_COUNT(colors), |
| 29 | SkShader::kClamp_TileMode)); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 30 | canvas.drawPaint(paint); |
| 31 | } |
| 32 | |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 33 | /////////////////////////////////////////////////////////////////////////////// |
| 34 | |
| 35 | struct GradData { |
| 36 | int fCount; |
| 37 | const SkColor* fColors; |
| 38 | const SkScalar* fPos; |
| 39 | }; |
| 40 | |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 41 | constexpr SkColor gColors[] = { |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 42 | SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE, SK_ColorWHITE, SK_ColorBLACK |
| 43 | }; |
| 44 | |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 45 | constexpr GradData gGradData[] = { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 46 | { 2, gColors, nullptr }, |
| 47 | { 5, gColors, nullptr }, |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 48 | }; |
| 49 | |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 50 | static sk_sp<SkShader> MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { |
| 51 | return SkGradientShader::MakeLinear(pts, data.fColors, data.fPos, data.fCount, tm); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 52 | } |
| 53 | |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 54 | static sk_sp<SkShader> MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 55 | SkPoint center; |
| 56 | center.set(SkScalarAve(pts[0].fX, pts[1].fX), |
| 57 | SkScalarAve(pts[0].fY, pts[1].fY)); |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 58 | return SkGradientShader::MakeRadial(center, center.fX, data.fColors, data.fPos, data.fCount, |
| 59 | tm); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 60 | } |
| 61 | |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 62 | static sk_sp<SkShader> MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode) { |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 63 | SkPoint center; |
| 64 | center.set(SkScalarAve(pts[0].fX, pts[1].fX), |
| 65 | SkScalarAve(pts[0].fY, pts[1].fY)); |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 66 | return SkGradientShader::MakeSweep(center.fX, center.fY, data.fColors, data.fPos, data.fCount); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 67 | } |
| 68 | |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 69 | static sk_sp<SkShader> Make2Conical(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 70 | SkPoint center0, center1; |
| 71 | center0.set(SkScalarAve(pts[0].fX, pts[1].fX), |
| 72 | SkScalarAve(pts[0].fY, pts[1].fY)); |
| 73 | center1.set(SkScalarInterp(pts[0].fX, pts[1].fX, SkIntToScalar(3)/5), |
| 74 | SkScalarInterp(pts[0].fY, pts[1].fY, SkIntToScalar(1)/4)); |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 75 | return SkGradientShader::MakeTwoPointConical( |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 76 | center1, (pts[1].fX - pts[0].fX) / 7, |
| 77 | center0, (pts[1].fX - pts[0].fX) / 2, |
commit-bot@chromium.org | 83f23d8 | 2014-05-22 12:27:41 +0000 | [diff] [blame] | 78 | data.fColors, data.fPos, data.fCount, tm); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 79 | } |
| 80 | |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 81 | typedef sk_sp<SkShader> (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm); |
skia.committer@gmail.com | 7693dbf | 2014-05-23 03:03:34 +0000 | [diff] [blame] | 82 | |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 83 | constexpr GradMaker gGradMakers[] = { |
reed | 71a6cbf | 2015-05-04 08:32:51 -0700 | [diff] [blame] | 84 | MakeLinear, MakeRadial, MakeSweep, Make2Conical |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | /////////////////////////////////////////////////////////////////////////////// |
| 88 | |
| 89 | class ShaderTextGM : public GM { |
| 90 | public: |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 91 | ShaderTextGM() { |
caryclark | 65cdba6 | 2015-06-15 06:51:08 -0700 | [diff] [blame] | 92 | this->setBGColor(sk_tool_utils::color_to_565(0xFFDDDDDD)); |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 93 | } |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 94 | |
| 95 | protected: |
| 96 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 97 | SkString onShortName() override { |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 98 | return SkString("shadertext"); |
| 99 | } |
| 100 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 101 | SkISize onISize() override { return SkISize::Make(1450, 500); } |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 102 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 103 | void onDraw(SkCanvas* canvas) override { |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 104 | const char text[] = "Shaded Text"; |
| 105 | const int textLen = SK_ARRAY_COUNT(text) - 1; |
bsalomon@google.com | 3914958 | 2011-06-13 21:55:32 +0000 | [diff] [blame] | 106 | const int pointSize = 36; |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 107 | |
reed | da8cf5a | 2014-09-04 13:18:36 -0700 | [diff] [blame] | 108 | const int w = pointSize * textLen; |
| 109 | const int h = pointSize; |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 110 | |
| 111 | SkPoint pts[2] = { |
| 112 | { 0, 0 }, |
| 113 | { SkIntToScalar(w), SkIntToScalar(h) } |
| 114 | }; |
| 115 | SkScalar textBase = SkIntToScalar(h/2); |
| 116 | |
| 117 | SkShader::TileMode tileModes[] = { |
| 118 | SkShader::kClamp_TileMode, |
| 119 | SkShader::kRepeat_TileMode, |
| 120 | SkShader::kMirror_TileMode |
| 121 | }; |
| 122 | |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 123 | constexpr int gradCount = SK_ARRAY_COUNT(gGradData) * |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 124 | SK_ARRAY_COUNT(gGradMakers); |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 125 | constexpr int bmpCount = SK_ARRAY_COUNT(tileModes) * |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 126 | SK_ARRAY_COUNT(tileModes); |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 127 | sk_sp<SkShader> shaders[gradCount + bmpCount]; |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 128 | |
| 129 | int shdIdx = 0; |
| 130 | for (size_t d = 0; d < SK_ARRAY_COUNT(gGradData); ++d) { |
| 131 | for (size_t m = 0; m < SK_ARRAY_COUNT(gGradMakers); ++m) { |
| 132 | shaders[shdIdx++] = gGradMakers[m](pts, |
| 133 | gGradData[d], |
commit-bot@chromium.org | 83f23d8 | 2014-05-22 12:27:41 +0000 | [diff] [blame] | 134 | SkShader::kClamp_TileMode); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 135 | } |
| 136 | } |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 137 | |
reed | da8cf5a | 2014-09-04 13:18:36 -0700 | [diff] [blame] | 138 | SkBitmap bm; |
| 139 | makebm(&bm, w/16, h/4); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 140 | for (size_t tx = 0; tx < SK_ARRAY_COUNT(tileModes); ++tx) { |
| 141 | for (size_t ty = 0; ty < SK_ARRAY_COUNT(tileModes); ++ty) { |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 142 | shaders[shdIdx++] = SkShader::MakeBitmapShader(bm, tileModes[tx], tileModes[ty]); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 143 | } |
| 144 | } |
| 145 | |
| 146 | SkPaint paint; |
| 147 | paint.setDither(true); |
| 148 | paint.setAntiAlias(true); |
caryclark | 1818acb | 2015-07-24 12:09:25 -0700 | [diff] [blame] | 149 | sk_tool_utils::set_portable_typeface(&paint); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 150 | paint.setTextSize(SkIntToScalar(pointSize)); |
| 151 | |
| 152 | canvas->save(); |
| 153 | canvas->translate(SkIntToScalar(20), SkIntToScalar(10)); |
| 154 | |
bsalomon@google.com | 3914958 | 2011-06-13 21:55:32 +0000 | [diff] [blame] | 155 | SkPath path; |
bsalomon@google.com | 137c428 | 2011-06-14 17:13:22 +0000 | [diff] [blame] | 156 | path.arcTo(SkRect::MakeXYWH(SkIntToScalar(-40), SkIntToScalar(15), |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 157 | SkIntToScalar(300), SkIntToScalar(90)), |
| 158 | SkIntToScalar(225), SkIntToScalar(90), |
bsalomon@google.com | 137c428 | 2011-06-14 17:13:22 +0000 | [diff] [blame] | 159 | false); |
bsalomon@google.com | 3914958 | 2011-06-13 21:55:32 +0000 | [diff] [blame] | 160 | path.close(); |
| 161 | |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 162 | constexpr int testsPerCol = 8; |
| 163 | constexpr int rowHeight = 60; |
| 164 | constexpr int colWidth = 300; |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 165 | canvas->save(); |
robertphillips@google.com | e9cd27d | 2013-10-16 17:48:11 +0000 | [diff] [blame] | 166 | for (int s = 0; s < static_cast<int>(SK_ARRAY_COUNT(shaders)); s++) { |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 167 | canvas->save(); |
bsalomon@google.com | 3914958 | 2011-06-13 21:55:32 +0000 | [diff] [blame] | 168 | int i = 2*s; |
| 169 | canvas->translate(SkIntToScalar((i / testsPerCol) * colWidth), |
| 170 | SkIntToScalar((i % testsPerCol) * rowHeight)); |
reed | 1a9b964 | 2016-03-13 14:13:58 -0700 | [diff] [blame] | 171 | paint.setShader(shaders[s]); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 172 | canvas->drawText(text, textLen, 0, textBase, paint); |
| 173 | canvas->restore(); |
bsalomon@google.com | 3914958 | 2011-06-13 21:55:32 +0000 | [diff] [blame] | 174 | canvas->save(); |
| 175 | ++i; |
| 176 | canvas->translate(SkIntToScalar((i / testsPerCol) * colWidth), |
| 177 | SkIntToScalar((i % testsPerCol) * rowHeight)); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 178 | canvas->drawTextOnPath(text, textLen, path, nullptr, paint); |
bsalomon@google.com | 3914958 | 2011-06-13 21:55:32 +0000 | [diff] [blame] | 179 | canvas->restore(); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 180 | } |
| 181 | canvas->restore(); |
bsalomon@google.com | 3914958 | 2011-06-13 21:55:32 +0000 | [diff] [blame] | 182 | |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | private: |
| 186 | typedef GM INHERITED; |
| 187 | }; |
| 188 | |
| 189 | /////////////////////////////////////////////////////////////////////////////// |
| 190 | |
| 191 | static GM* MyFactory(void*) { return new ShaderTextGM; } |
| 192 | static GMRegistry reg(MyFactory); |
bsalomon@google.com | 0fdaa22 | 2011-01-25 18:35:26 +0000 | [diff] [blame] | 193 | } |