blob: d51fce2cf668d6c5d75266e884fcda8f08a456d1 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
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.com1a2fec52009-06-22 02:17:34 +00008#include "gm.h"
9#include "SkPath.h"
10#include "SkRegion.h"
11#include "SkShader.h"
12#include "SkUtils.h"
13#include "SkColorPriv.h"
14#include "SkColorFilter.h"
15#include "SkTypeface.h"
16
17// effects
18#include "SkGradientShader.h"
19#include "SkUnitMappers.h"
20#include "SkBlurDrawLooper.h"
21
reed@android.com1a2fec52009-06-22 02:17:34 +000022static void makebm(SkBitmap* bm, SkBitmap::Config config, int w, int h) {
23 bm->setConfig(config, w, h);
24 bm->allocPixels();
junov@google.comdbfac8a2012-12-06 21:47:40 +000025 bm->eraseColor(SK_ColorTRANSPARENT);
rmistry@google.comae933ce2012-08-23 18:19:56 +000026
reed@android.com1a2fec52009-06-22 02:17:34 +000027 SkCanvas canvas(*bm);
28 SkPoint pts[] = { { 0, 0 }, { SkIntToScalar(w), SkIntToScalar(h)} };
29 SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE };
30 SkScalar pos[] = { 0, SK_Scalar1/2, SK_Scalar1 };
31 SkPaint paint;
rmistry@google.comae933ce2012-08-23 18:19:56 +000032
33 SkUnitMapper* um = NULL;
reed@android.com1a2fec52009-06-22 02:17:34 +000034
35 um = new SkCosineMapper;
36// um = new SkDiscreteMapper(12);
37
38 SkAutoUnref au(um);
39
40 paint.setDither(true);
41 paint.setShader(SkGradientShader::CreateLinear(pts, colors, pos,
42 SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode, um))->unref();
43 canvas.drawPaint(paint);
44}
45
46static void setup(SkPaint* paint, const SkBitmap& bm, bool filter,
47 SkShader::TileMode tmx, SkShader::TileMode tmy) {
48 SkShader* shader = SkShader::CreateBitmapShader(bm, tmx, tmy);
49 paint->setShader(shader)->unref();
50 paint->setFilterBitmap(filter);
51}
52
53static const SkBitmap::Config gConfigs[] = {
54 SkBitmap::kARGB_8888_Config,
55 SkBitmap::kRGB_565_Config,
56 SkBitmap::kARGB_4444_Config
57};
58static const int gWidth = 32;
59static const int gHeight = 32;
60
mike@reedtribe.orga0591692012-10-18 02:01:59 +000061class TilingGM : public skiagm::GM {
reed@android.com1a2fec52009-06-22 02:17:34 +000062 SkBlurDrawLooper fLooper;
63public:
rmistry@google.comae933ce2012-08-23 18:19:56 +000064 TilingGM()
reed@android.com1a2fec52009-06-22 02:17:34 +000065 : fLooper(SkIntToScalar(1), SkIntToScalar(2), SkIntToScalar(2),
66 0x88000000) {
reed@android.com1a2fec52009-06-22 02:17:34 +000067 }
68
69 SkBitmap fTexture[SK_ARRAY_COUNT(gConfigs)];
rmistry@google.comae933ce2012-08-23 18:19:56 +000070
reed@android.com1a2fec52009-06-22 02:17:34 +000071protected:
72 SkString onShortName() {
73 return SkString("tilemodes");
74 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000075
mike@reedtribe.orga0591692012-10-18 02:01:59 +000076 SkISize onISize() { return SkISize::Make(880, 560); }
rmistry@google.comae933ce2012-08-23 18:19:56 +000077
reed@google.com7775d662012-11-27 15:15:58 +000078 virtual void onOnceBeforeDraw() SK_OVERRIDE {
79 for (size_t i = 0; i < SK_ARRAY_COUNT(gConfigs); i++) {
80 makebm(&fTexture[i], gConfigs[i], gWidth, gHeight);
81 }
82 }
83
84 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
rmistry@google.comae933ce2012-08-23 18:19:56 +000085
reed@android.com1a2fec52009-06-22 02:17:34 +000086 SkRect r = { 0, 0, SkIntToScalar(gWidth*2), SkIntToScalar(gHeight*2) };
87
88 static const char* gConfigNames[] = { "8888", "565", "4444" };
rmistry@google.comae933ce2012-08-23 18:19:56 +000089
reed@android.com1a2fec52009-06-22 02:17:34 +000090 static const bool gFilters[] = { false, true };
91 static const char* gFilterNames[] = { "point", "bilinear" };
rmistry@google.comae933ce2012-08-23 18:19:56 +000092
reed@android.com1a2fec52009-06-22 02:17:34 +000093 static const SkShader::TileMode gModes[] = { SkShader::kClamp_TileMode, SkShader::kRepeat_TileMode, SkShader::kMirror_TileMode };
94 static const char* gModeNames[] = { "C", "R", "M" };
95
96 SkScalar y = SkIntToScalar(24);
97 SkScalar x = SkIntToScalar(10);
98
99 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
100 for (size_t ky = 0; ky < SK_ARRAY_COUNT(gModes); ky++) {
101 SkPaint p;
102 SkString str;
103 p.setAntiAlias(true);
104 p.setDither(true);
105 p.setLooper(&fLooper);
106 str.printf("[%s,%s]", gModeNames[kx], gModeNames[ky]);
107
108 p.setTextAlign(SkPaint::kCenter_Align);
109 canvas->drawText(str.c_str(), str.size(), x + r.width()/2, y, p);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000110
reed@android.com1a2fec52009-06-22 02:17:34 +0000111 x += r.width() * 4 / 3;
112 }
113 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000114
reed@android.com1a2fec52009-06-22 02:17:34 +0000115 y += SkIntToScalar(16);
116
117 for (size_t i = 0; i < SK_ARRAY_COUNT(gConfigs); i++) {
118 for (size_t j = 0; j < SK_ARRAY_COUNT(gFilters); j++) {
119 x = SkIntToScalar(10);
120 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
121 for (size_t ky = 0; ky < SK_ARRAY_COUNT(gModes); ky++) {
122 SkPaint paint;
123 setup(&paint, fTexture[i], gFilters[j], gModes[kx], gModes[ky]);
124 paint.setDither(true);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000125
reed@android.com1a2fec52009-06-22 02:17:34 +0000126 canvas->save();
127 canvas->translate(x, y);
128 canvas->drawRect(r, paint);
129 canvas->restore();
rmistry@google.comae933ce2012-08-23 18:19:56 +0000130
reed@android.com1a2fec52009-06-22 02:17:34 +0000131 x += r.width() * 4 / 3;
132 }
133 }
134 {
135 SkPaint p;
136 SkString str;
137 p.setAntiAlias(true);
138 p.setLooper(&fLooper);
139 str.printf("%s, %s", gConfigNames[i], gFilterNames[j]);
140 canvas->drawText(str.c_str(), str.size(), x, y + r.height() * 2 / 3, p);
141 }
142
143 y += r.height() * 4 / 3;
144 }
145 }
146 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000147
reed@android.com1a2fec52009-06-22 02:17:34 +0000148private:
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000149 typedef skiagm::GM INHERITED;
150};
151
152static SkShader* make_bm(SkShader::TileMode tx, SkShader::TileMode ty) {
153 SkBitmap bm;
154 makebm(&bm, SkBitmap::kARGB_8888_Config, gWidth, gHeight);
155 return SkShader::CreateBitmapShader(bm, tx, ty);
156}
157
158static SkShader* make_grad(SkShader::TileMode tx, SkShader::TileMode ty) {
159 SkPoint pts[] = { { 0, 0 }, { SkIntToScalar(gWidth), SkIntToScalar(gHeight)} };
160 SkPoint center = { SkIntToScalar(gWidth)/2, SkIntToScalar(gHeight)/2 };
161 SkScalar rad = SkIntToScalar(gWidth)/2;
162 SkColor colors[] = { 0xFFFF0000, 0xFF0044FF };
163
164 int index = (int)ty;
165 switch (index % 3) {
166 case 0:
167 return SkGradientShader::CreateLinear(pts, colors, NULL, SK_ARRAY_COUNT(colors), tx);
168 case 1:
169 return SkGradientShader::CreateRadial(center, rad, colors, NULL, SK_ARRAY_COUNT(colors), tx);
170 case 2:
171 return SkGradientShader::CreateSweep(center.fX, center.fY, colors, NULL, SK_ARRAY_COUNT(colors));
172 }
robertphillips@google.com93f03322012-12-03 17:35:19 +0000173
174 return NULL;
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000175}
176
177static SkShader* make_radial(SkShader::TileMode tx, SkShader::TileMode ty) {
178 SkPoint center = { SkIntToScalar(gWidth)/2, SkIntToScalar(gHeight)/2 };
179 SkScalar rad = SkIntToScalar(gWidth)/2;
180 SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE };
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000181
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000182 return SkGradientShader::CreateRadial(center, rad, colors, NULL, SK_ARRAY_COUNT(colors), tx);
183}
184
185typedef SkShader* (*ShaderProc)(SkShader::TileMode, SkShader::TileMode);
186
187class Tiling2GM : public skiagm::GM {
188 ShaderProc fProc;
189 SkString fName;
190public:
191 Tiling2GM(ShaderProc proc, const char name[]) : fProc(proc) {
192 fName.printf("tilemode_%s", name);
193 }
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000194
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000195protected:
196 SkString onShortName() {
197 return fName;
198 }
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000199
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000200 SkISize onISize() { return SkISize::Make(880, 560); }
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000201
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000202 virtual void onDraw(SkCanvas* canvas) {
203 canvas->scale(SkIntToScalar(3)/2, SkIntToScalar(3)/2);
204
205 const SkScalar w = SkIntToScalar(gWidth);
206 const SkScalar h = SkIntToScalar(gHeight);
207 SkRect r = { -w, -h, w*2, h*2 };
208
209 static const SkShader::TileMode gModes[] = {
210 SkShader::kClamp_TileMode, SkShader::kRepeat_TileMode, SkShader::kMirror_TileMode
211 };
212 static const char* gModeNames[] = {
213 "Clamp", "Repeat", "Mirror"
214 };
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000215
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000216 SkScalar y = SkIntToScalar(24);
217 SkScalar x = SkIntToScalar(66);
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000218
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000219 SkPaint p;
220 p.setAntiAlias(true);
221 p.setTextAlign(SkPaint::kCenter_Align);
222
223 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
224 SkString str(gModeNames[kx]);
225 canvas->drawText(str.c_str(), str.size(), x + r.width()/2, y, p);
226 x += r.width() * 4 / 3;
227 }
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000228
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000229 y += SkIntToScalar(16) + h;
230 p.setTextAlign(SkPaint::kRight_Align);
231
232 for (size_t ky = 0; ky < SK_ARRAY_COUNT(gModes); ky++) {
233 x = SkIntToScalar(16) + w;
234
235 SkString str(gModeNames[ky]);
236 canvas->drawText(str.c_str(), str.size(), x, y + h/2, p);
237
238 x += SkIntToScalar(50);
239 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
240 SkPaint paint;
241 paint.setShader(fProc(gModes[kx], gModes[ky]))->unref();
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000242
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000243 canvas->save();
244 canvas->translate(x, y);
245 canvas->drawRect(r, paint);
246 canvas->restore();
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000247
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000248 x += r.width() * 4 / 3;
249 }
250 y += r.height() * 4 / 3;
251 }
252 }
skia.committer@gmail.com6a748ad2012-10-19 02:01:19 +0000253
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000254private:
255 typedef skiagm::GM INHERITED;
reed@android.com1a2fec52009-06-22 02:17:34 +0000256};
257
258//////////////////////////////////////////////////////////////////////////////
259
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000260static skiagm::GM* MyFactory(void*) { return new TilingGM; }
261static skiagm::GMRegistry reg(MyFactory);
reed@android.com1a2fec52009-06-22 02:17:34 +0000262
mike@reedtribe.orga0591692012-10-18 02:01:59 +0000263static skiagm::GM* MyFactory2(void*) { return new Tiling2GM(make_bm, "bitmap"); }
264static skiagm::GMRegistry reg2(MyFactory2);
265
266static skiagm::GM* MyFactory3(void*) { return new Tiling2GM(make_grad, "gradient"); }
267static skiagm::GMRegistry reg3(MyFactory3);
268
reed@android.com1a2fec52009-06-22 02:17:34 +0000269