blob: 5f995e2bdbb46b3cd76819c39a987ea71d59c301 [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"
robertphillips@google.com770963f2014-04-18 18:04:41 +000013#include "SkPictureRecorder.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000014#include "SkRegion.h"
15#include "SkShader.h"
16#include "SkUtils.h"
17#include "SkColorPriv.h"
18#include "SkColorFilter.h"
reed@android.comf2b98d62010-12-20 18:26:13 +000019#include "SkPicture.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000020#include "SkTypeface.h"
21
22// effects
23#include "SkGradientShader.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
reed@android.com8a1c16f2008-12-17 15:59:43 +000037 paint.setDither(true);
38 paint.setShader(SkGradientShader::CreateLinear(pts, colors, pos,
commit-bot@chromium.org83f23d82014-05-22 12:27:41 +000039 SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode))->unref();
reed@android.com8a1c16f2008-12-17 15:59:43 +000040 canvas.drawPaint(paint);
41}
42
43static void setup(SkPaint* paint, const SkBitmap& bm, bool filter,
44 SkShader::TileMode tmx, SkShader::TileMode tmy) {
45 SkShader* shader = SkShader::CreateBitmapShader(bm, tmx, tmy);
46 paint->setShader(shader)->unref();
reed93a12152015-03-16 10:08:34 -070047 paint->setFilterQuality(filter ? kLow_SkFilterQuality : kNone_SkFilterQuality);
reed@android.com8a1c16f2008-12-17 15:59:43 +000048}
49
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000050static const SkColorType gColorTypes[] = {
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000051 kN32_SkColorType,
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000052 kRGB_565_SkColorType,
reed@android.com8a1c16f2008-12-17 15:59:43 +000053};
54static const int gWidth = 32;
55static const int gHeight = 32;
56
reed@google.comf2183392011-04-22 14:10:48 +000057class TilingView : public SampleView {
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000058 SkAutoTUnref<SkPicture> fTextPicture;
59 SkAutoTUnref<SkBlurDrawLooper> fLooper;
reed@android.com8a1c16f2008-12-17 15:59:43 +000060public:
rmistry@google.comae933ce2012-08-23 18:19:56 +000061 TilingView()
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000062 : fLooper(SkBlurDrawLooper::Create(0x88000000,
63 SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(1)),
64 SkIntToScalar(2), SkIntToScalar(2))) {
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000065 for (size_t i = 0; i < SK_ARRAY_COUNT(gColorTypes); i++) {
66 makebm(&fTexture[i], gColorTypes[i], gWidth, gHeight);
reed@android.com8a1c16f2008-12-17 15:59:43 +000067 }
68 }
69
robertphillips@google.com84b18c72014-04-13 19:09:42 +000070 virtual ~TilingView() {
junov@google.comf3cf9422011-09-13 18:15:52 +000071 }
72
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +000073 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)];
rmistry@google.comae933ce2012-08-23 18:19:56 +000074
reed@android.com8a1c16f2008-12-17 15:59:43 +000075protected:
76 // overrides from SkEventSink
77 virtual bool onQuery(SkEvent* evt) {
78 if (SampleCode::TitleQ(*evt)) {
79 SampleCode::TitleR(evt, "Tiling");
80 return true;
81 }
82 return this->INHERITED::onQuery(evt);
83 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000084
reed@google.comf2183392011-04-22 14:10:48 +000085 virtual void onDrawContent(SkCanvas* canvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +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.com8a1c16f2008-12-17 15:59:43 +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.com8a1c16f2008-12-17 15:59:43 +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
robertphillips@google.com84b18c72014-04-13 19:09:42 +000099 SkPictureRecorder recorder;
reed@android.comf2b98d62010-12-20 18:26:13 +0000100 SkCanvas* textCanvas = NULL;
commit-bot@chromium.org0dd01ee2014-04-15 23:00:57 +0000101 if (NULL == fTextPicture) {
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +0000102 textCanvas = recorder.beginRecording(1000, 1000, NULL, 0);
reed@android.comf2b98d62010-12-20 18:26:13 +0000103 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000104
bsalomon49f085d2014-09-05 13:34:00 -0700105 if (textCanvas) {
senorblanco@chromium.org64cc5792011-05-19 19:58:58 +0000106 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
107 for (size_t ky = 0; ky < SK_ARRAY_COUNT(gModes); ky++) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000108 SkPaint p;
109 SkString str;
110 p.setAntiAlias(true);
111 p.setDither(true);
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +0000112 p.setLooper(fLooper);
reed@android.comf2b98d62010-12-20 18:26:13 +0000113 str.printf("[%s,%s]", gModeNames[kx], gModeNames[ky]);
114
115 p.setTextAlign(SkPaint::kCenter_Align);
116 textCanvas->drawText(str.c_str(), str.size(), x + r.width()/2, y, p);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000117
reed@android.comf2b98d62010-12-20 18:26:13 +0000118 x += r.width() * 4 / 3;
119 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000120 }
121 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000122
reed@android.com8a1c16f2008-12-17 15:59:43 +0000123 y += SkIntToScalar(16);
124
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +0000125 for (size_t i = 0; i < SK_ARRAY_COUNT(gColorTypes); i++) {
senorblanco@chromium.org64cc5792011-05-19 19:58:58 +0000126 for (size_t j = 0; j < SK_ARRAY_COUNT(gFilters); j++) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000127 x = SkIntToScalar(10);
senorblanco@chromium.org64cc5792011-05-19 19:58:58 +0000128 for (size_t kx = 0; kx < SK_ARRAY_COUNT(gModes); kx++) {
129 for (size_t ky = 0; ky < SK_ARRAY_COUNT(gModes); ky++) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000130 SkPaint paint;
131 setup(&paint, fTexture[i], gFilters[j], gModes[kx], gModes[ky]);
132 paint.setDither(true);
rmistry@google.comae933ce2012-08-23 18:19:56 +0000133
reed@android.com8a1c16f2008-12-17 15:59:43 +0000134 canvas->save();
135 canvas->translate(x, y);
136 canvas->drawRect(r, paint);
137 canvas->restore();
rmistry@google.comae933ce2012-08-23 18:19:56 +0000138
reed@android.com8a1c16f2008-12-17 15:59:43 +0000139 x += r.width() * 4 / 3;
140 }
141 }
bsalomon49f085d2014-09-05 13:34:00 -0700142 if (textCanvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000143 SkPaint p;
144 SkString str;
145 p.setAntiAlias(true);
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +0000146 p.setLooper(fLooper);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000147 str.printf("%s, %s", gConfigNames[i], gFilterNames[j]);
reed@android.comf2b98d62010-12-20 18:26:13 +0000148 textCanvas->drawText(str.c_str(), str.size(), x, y + r.height() * 2 / 3, p);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000149 }
150
151 y += r.height() * 4 / 3;
152 }
153 }
reed@android.comf2b98d62010-12-20 18:26:13 +0000154
bsalomon49f085d2014-09-05 13:34:00 -0700155 if (textCanvas) {
commit-bot@chromium.org0dd01ee2014-04-15 23:00:57 +0000156 SkASSERT(NULL == fTextPicture);
157 fTextPicture.reset(recorder.endRecording());
158 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000159
bsalomon49f085d2014-09-05 13:34:00 -0700160 SkASSERT(fTextPicture);
robertphillips9b14f262014-06-04 05:40:44 -0700161 canvas->drawPicture(fTextPicture);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000162 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000163
reed@android.com8a1c16f2008-12-17 15:59:43 +0000164private:
reed@google.comf2183392011-04-22 14:10:48 +0000165 typedef SampleView INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000166};
167
168//////////////////////////////////////////////////////////////////////////////
169
170static SkView* MyFactory() { return new TilingView; }
171static SkViewRegister reg(MyFactory);