blob: d26701273e8d4d7eecaa2e2455214665bcef2c2c [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.com8a1c16f2008-12-17 15:59:43 +00008#include "SampleCode.h"
9#include "SkView.h"
10#include "SkCanvas.h"
11#include "SkPaint.h"
12#include "SkPath.h"
13#include "SkRegion.h"
14#include "SkShader.h"
15#include "SkUtils.h"
16#include "SkColorPriv.h"
17#include "SkColorFilter.h"
reed@android.comf2b98d62010-12-20 18:26:13 +000018#include "SkPicture.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000019#include "SkTypeface.h"
20
21// effects
22#include "SkGradientShader.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000023#include "SkUnitMappers.h"
robertphillips@google.comb7061172013-09-06 14:16:12 +000024#include "SkBlurMask.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000025#include "SkBlurDrawLooper.h"
26
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000027static void makebm(SkBitmap* bm, SkColorType ct, int w, int h) {
28 bm->allocPixels(SkImageInfo::Make(w, h, ct, kPremul_SkAlphaType));
junov@google.comdbfac8a2012-12-06 21:47:40 +000029 bm->eraseColor(SK_ColorTRANSPARENT);
rmistry@google.comae933ce2012-08-23 18:19:56 +000030
reed@android.com8a1c16f2008-12-17 15:59:43 +000031 SkCanvas canvas(*bm);
senorblanco@chromium.org64cc5792011-05-19 19:58:58 +000032 SkPoint pts[] = { { 0, 0 }, { SkIntToScalar(w), SkIntToScalar(h) } };
reed@android.com8a1c16f2008-12-17 15:59:43 +000033 SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE };
34 SkScalar pos[] = { 0, SK_Scalar1/2, SK_Scalar1 };
35 SkPaint paint;
rmistry@google.comae933ce2012-08-23 18:19:56 +000036
37 SkUnitMapper* um = NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +000038
39 um = new SkCosineMapper;
40// um = new SkDiscreteMapper(12);
41
42 SkAutoUnref au(um);
43
44 paint.setDither(true);
45 paint.setShader(SkGradientShader::CreateLinear(pts, colors, pos,
46 SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode, um))->unref();
47 canvas.drawPaint(paint);
48}
49
50static void setup(SkPaint* paint, const SkBitmap& bm, bool filter,
51 SkShader::TileMode tmx, SkShader::TileMode tmy) {
52 SkShader* shader = SkShader::CreateBitmapShader(bm, tmx, tmy);
53 paint->setShader(shader)->unref();
reed@google.com44699382013-10-31 17:28:30 +000054 paint->setFilterLevel(filter ? SkPaint::kLow_FilterLevel : SkPaint::kNone_FilterLevel);
reed@android.com8a1c16f2008-12-17 15:59:43 +000055}
56
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000057static const SkColorType gColorTypes[] = {
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000058 kN32_SkColorType,
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000059 kRGB_565_SkColorType,
reed@android.com8a1c16f2008-12-17 15:59:43 +000060};
61static const int gWidth = 32;
62static const int gHeight = 32;
63
reed@google.comf2183392011-04-22 14:10:48 +000064class TilingView : public SampleView {
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000065 SkAutoTUnref<SkPicture> fTextPicture;
66 SkAutoTUnref<SkBlurDrawLooper> fLooper;
reed@android.com8a1c16f2008-12-17 15:59:43 +000067public:
rmistry@google.comae933ce2012-08-23 18:19:56 +000068 TilingView()
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000069 : fLooper(SkBlurDrawLooper::Create(0x88000000,
70 SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(1)),
71 SkIntToScalar(2), SkIntToScalar(2))) {
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000072 for (size_t i = 0; i < SK_ARRAY_COUNT(gColorTypes); i++) {
73 makebm(&fTexture[i], gColorTypes[i], gWidth, gHeight);
reed@android.com8a1c16f2008-12-17 15:59:43 +000074 }
75 }
76
robertphillips@google.com84b18c72014-04-13 19:09:42 +000077 virtual ~TilingView() {
junov@google.comf3cf9422011-09-13 18:15:52 +000078 }
79
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000080 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)];
rmistry@google.comae933ce2012-08-23 18:19:56 +000081
reed@android.com8a1c16f2008-12-17 15:59:43 +000082protected:
83 // overrides from SkEventSink
84 virtual bool onQuery(SkEvent* evt) {
85 if (SampleCode::TitleQ(*evt)) {
86 SampleCode::TitleR(evt, "Tiling");
87 return true;
88 }
89 return this->INHERITED::onQuery(evt);
90 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000091
reed@google.comf2183392011-04-22 14:10:48 +000092 virtual void onDrawContent(SkCanvas* canvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000093 SkRect r = { 0, 0, SkIntToScalar(gWidth*2), SkIntToScalar(gHeight*2) };
94
95 static const char* gConfigNames[] = { "8888", "565", "4444" };
rmistry@google.comae933ce2012-08-23 18:19:56 +000096
reed@android.com8a1c16f2008-12-17 15:59:43 +000097 static const bool gFilters[] = { false, true };
98 static const char* gFilterNames[] = { "point", "bilinear" };
rmistry@google.comae933ce2012-08-23 18:19:56 +000099
reed@android.com8a1c16f2008-12-17 15:59:43 +0000100 static const SkShader::TileMode gModes[] = { SkShader::kClamp_TileMode, SkShader::kRepeat_TileMode, SkShader::kMirror_TileMode };
101 static const char* gModeNames[] = { "C", "R", "M" };
102
103 SkScalar y = SkIntToScalar(24);
104 SkScalar x = SkIntToScalar(10);
105
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000106 SkPictureRecorder recorder;
reed@android.comf2b98d62010-12-20 18:26:13 +0000107 SkCanvas* textCanvas = NULL;
commit-bot@chromium.org0dd01ee2014-04-15 23:00:57 +0000108 if (NULL == fTextPicture) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000109 textCanvas = recorder.beginRecording(1000, 1000);
reed@android.comf2b98d62010-12-20 18:26:13 +0000110 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000111
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000112 if (NULL != textCanvas) {
senorblanco@chromium.org64cc5792011-05-19 19:58:58 +0000113 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
114 for (size_t ky = 0; ky < SK_ARRAY_COUNT(gModes); ky++) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000115 SkPaint p;
116 SkString str;
117 p.setAntiAlias(true);
118 p.setDither(true);
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +0000119 p.setLooper(fLooper);
reed@android.comf2b98d62010-12-20 18:26:13 +0000120 str.printf("[%s,%s]", gModeNames[kx], gModeNames[ky]);
121
122 p.setTextAlign(SkPaint::kCenter_Align);
123 textCanvas->drawText(str.c_str(), str.size(), x + r.width()/2, y, p);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000124
reed@android.comf2b98d62010-12-20 18:26:13 +0000125 x += r.width() * 4 / 3;
126 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000127 }
128 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000129
reed@android.com8a1c16f2008-12-17 15:59:43 +0000130 y += SkIntToScalar(16);
131
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +0000132 for (size_t i = 0; i < SK_ARRAY_COUNT(gColorTypes); i++) {
senorblanco@chromium.org64cc5792011-05-19 19:58:58 +0000133 for (size_t j = 0; j < SK_ARRAY_COUNT(gFilters); j++) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000134 x = SkIntToScalar(10);
senorblanco@chromium.org64cc5792011-05-19 19:58:58 +0000135 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
136 for (size_t ky = 0; ky < SK_ARRAY_COUNT(gModes); ky++) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000137 SkPaint paint;
138 setup(&paint, fTexture[i], gFilters[j], gModes[kx], gModes[ky]);
139 paint.setDither(true);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000140
reed@android.com8a1c16f2008-12-17 15:59:43 +0000141 canvas->save();
142 canvas->translate(x, y);
143 canvas->drawRect(r, paint);
144 canvas->restore();
rmistry@google.comae933ce2012-08-23 18:19:56 +0000145
reed@android.com8a1c16f2008-12-17 15:59:43 +0000146 x += r.width() * 4 / 3;
147 }
148 }
commit-bot@chromium.org0dd01ee2014-04-15 23:00:57 +0000149 if (NULL != textCanvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000150 SkPaint p;
151 SkString str;
152 p.setAntiAlias(true);
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +0000153 p.setLooper(fLooper);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000154 str.printf("%s, %s", gConfigNames[i], gFilterNames[j]);
reed@android.comf2b98d62010-12-20 18:26:13 +0000155 textCanvas->drawText(str.c_str(), str.size(), x, y + r.height() * 2 / 3, p);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000156 }
157
158 y += r.height() * 4 / 3;
159 }
160 }
reed@android.comf2b98d62010-12-20 18:26:13 +0000161
commit-bot@chromium.org0dd01ee2014-04-15 23:00:57 +0000162 if (NULL != textCanvas) {
163 SkASSERT(NULL == fTextPicture);
164 fTextPicture.reset(recorder.endRecording());
165 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000166
commit-bot@chromium.org0dd01ee2014-04-15 23:00:57 +0000167 SkASSERT(NULL != fTextPicture);
junov@google.comf3cf9422011-09-13 18:15:52 +0000168 canvas->drawPicture(*fTextPicture);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000169 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000170
reed@android.com8a1c16f2008-12-17 15:59:43 +0000171private:
reed@google.comf2183392011-04-22 14:10:48 +0000172 typedef SampleView INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000173};
174
175//////////////////////////////////////////////////////////////////////////////
176
177static SkView* MyFactory() { return new TilingView; }
178static SkViewRegister reg(MyFactory);