blob: 6ae3159b917739f3cf5247b7442c8ede9c7e110e [file] [log] [blame]
bsalomon@google.com42316092012-10-12 19:26:15 +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 */
7#include "gm.h"
8#include "SkCanvas.h"
9#include "SkGradientShader.h"
10#include "SkUnitMappers.h"
11
12namespace skiagm {
13
commit-bot@chromium.orgdac52252014-02-17 21:21:46 +000014static void makebm(SkBitmap* bm, int w, int h) {
15 bm->allocN32Pixels(w, h);
junov@google.comdbfac8a2012-12-06 21:47:40 +000016 bm->eraseColor(SK_ColorTRANSPARENT);
bsalomon@google.com42316092012-10-12 19:26:15 +000017
18 SkCanvas canvas(*bm);
19 SkScalar s = SkIntToScalar(SkMin32(w, h));
20 static const SkPoint kPts0[] = { { 0, 0 }, { s, s } };
21 static const SkPoint kPts1[] = { { s/2, 0 }, { s/2, s } };
22 static const SkScalar kPos[] = { 0, SK_Scalar1/2, SK_Scalar1 };
23 static const SkColor kColors0[] = {0x80F00080, 0xF0F08000, 0x800080F0 };
24 static const SkColor kColors1[] = {0xF08000F0, 0x8080F000, 0xF000F080 };
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +000025
bsalomon@google.com42316092012-10-12 19:26:15 +000026
27 SkPaint paint;
28
29 SkUnitMapper* um = NULL;
30
31 um = new SkCosineMapper;
32
33 SkAutoUnref au(um);
34
35 paint.setShader(SkGradientShader::CreateLinear(kPts0, kColors0, kPos,
36 SK_ARRAY_COUNT(kColors0), SkShader::kClamp_TileMode, um))->unref();
37 canvas.drawPaint(paint);
38 paint.setShader(SkGradientShader::CreateLinear(kPts1, kColors1, kPos,
39 SK_ARRAY_COUNT(kColors1), SkShader::kClamp_TileMode))->unref();
40 canvas.drawPaint(paint);
41}
42
43///////////////////////////////////////////////////////////////////////////////
44
45struct LabeledMatrix {
46 SkMatrix fMatrix;
47 const char* fLabel;
48};
49
commit-bot@chromium.orga54abdc2014-03-26 21:21:40 +000050static const char kText[] = "B";
51static const int kTextLen = SK_ARRAY_COUNT(kText) - 1;
52static const int kPointSize = 300;
53
bsalomon@google.com42316092012-10-12 19:26:15 +000054class ShaderText3GM : public GM {
55public:
56 ShaderText3GM() {
57 this->setBGColor(0xFFDDDDDD);
58 }
59
60protected:
61
commit-bot@chromium.orga54abdc2014-03-26 21:21:40 +000062 virtual SkString onShortName() SK_OVERRIDE {
bsalomon@google.com42316092012-10-12 19:26:15 +000063 return SkString("shadertext3");
64 }
65
commit-bot@chromium.orga54abdc2014-03-26 21:21:40 +000066 virtual SkISize onISize() SK_OVERRIDE{ return make_isize(800, 1000); }
bsalomon@google.com42316092012-10-12 19:26:15 +000067
commit-bot@chromium.orga54abdc2014-03-26 21:21:40 +000068 virtual void onOnceBeforeDraw() SK_OVERRIDE {
69 makebm(&fBmp, kPointSize / 4, kPointSize / 4);
70 }
bsalomon@google.com42316092012-10-12 19:26:15 +000071
commit-bot@chromium.orga54abdc2014-03-26 21:21:40 +000072 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +000073
bsalomon@google.com42316092012-10-12 19:26:15 +000074 SkPaint bmpPaint;
75 bmpPaint.setAntiAlias(true);
reed@google.com44699382013-10-31 17:28:30 +000076 bmpPaint.setFilterLevel(SkPaint::kLow_FilterLevel);
bsalomon@google.com42316092012-10-12 19:26:15 +000077 bmpPaint.setAlpha(0x80);
commit-bot@chromium.orga54abdc2014-03-26 21:21:40 +000078 canvas->drawBitmap(fBmp, 5.f, 5.f, &bmpPaint);
bsalomon@google.com42316092012-10-12 19:26:15 +000079
80 SkPaint outlinePaint;
81 outlinePaint.setAntiAlias(true);
82 outlinePaint.setTextSize(SkIntToScalar(kPointSize));
83 outlinePaint.setStyle(SkPaint::kStroke_Style);
84 outlinePaint.setStrokeWidth(0.f);
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +000085
bsalomon@google.com42316092012-10-12 19:26:15 +000086 canvas->translate(15.f, 15.f);
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +000087
bsalomon@google.com42316092012-10-12 19:26:15 +000088 // draw glyphs scaled up
89 canvas->scale(2.f, 2.f);
90
91 static const SkShader::TileMode kTileModes[] = {
92 SkShader::kRepeat_TileMode,
93 SkShader::kMirror_TileMode,
94 };
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +000095
bsalomon@google.com42316092012-10-12 19:26:15 +000096 // position the baseline of the first run
97 canvas->translate(0.f, 0.75f * kPointSize);
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +000098
bsalomon@google.com42316092012-10-12 19:26:15 +000099 canvas->save();
100 int i = 0;
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000101 for (size_t tm0 = 0; tm0 < SK_ARRAY_COUNT(kTileModes); ++tm0) {
bsalomon@google.com42316092012-10-12 19:26:15 +0000102 for (size_t tm1 = 0; tm1 < SK_ARRAY_COUNT(kTileModes); ++tm1) {
bsalomon@google.com42316092012-10-12 19:26:15 +0000103 SkMatrix localM;
104 localM.setTranslate(5.f, 5.f);
105 localM.postRotate(20);
106 localM.postScale(1.15f, .85f);
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +0000107
108 SkAutoTUnref<SkShader> shader(SkShader::CreateBitmapShader(fBmp,
109 kTileModes[tm0],
110 kTileModes[tm1],
111 &localM));
bsalomon@google.com42316092012-10-12 19:26:15 +0000112
113 SkPaint fillPaint;
114 fillPaint.setAntiAlias(true);
115 fillPaint.setTextSize(SkIntToScalar(kPointSize));
reed@google.com44699382013-10-31 17:28:30 +0000116 fillPaint.setFilterLevel(SkPaint::kLow_FilterLevel);
bsalomon@google.com42316092012-10-12 19:26:15 +0000117 fillPaint.setShader(shader);
118
119 canvas->drawText(kText, kTextLen, 0, 0, fillPaint);
120 canvas->drawText(kText, kTextLen, 0, 0, outlinePaint);
robertphillips@google.comca47aae2012-12-12 15:58:25 +0000121 SkScalar w = fillPaint.measureText(kText, kTextLen);
bsalomon@google.com42316092012-10-12 19:26:15 +0000122 canvas->translate(w + 10.f, 0.f);
123 ++i;
124 if (!(i % 2)) {
125 canvas->restore();
126 canvas->translate(0, 0.75f * kPointSize);
127 canvas->save();
128 }
129 }
130 }
131 canvas->restore();
132 }
133
134private:
commit-bot@chromium.orga54abdc2014-03-26 21:21:40 +0000135 SkBitmap fBmp;
bsalomon@google.com42316092012-10-12 19:26:15 +0000136 typedef GM INHERITED;
137};
138
139///////////////////////////////////////////////////////////////////////////////
140
bsalomon@google.com42316092012-10-12 19:26:15 +0000141static GM* MyFactory(void*) { return new ShaderText3GM; }
142static GMRegistry reg(MyFactory);
bsalomon@google.com42316092012-10-12 19:26:15 +0000143}