blob: e003ee6ba82c308854242e24e36c0330ebe08e25 [file] [log] [blame]
joshualitte46cf962015-08-26 11:19:55 -07001/*
2 * Copyright 2015 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
8#include "gm.h"
Mike Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
joshualitte46cf962015-08-26 11:19:55 -070010
11#include "Resources.h"
12#include "SkBlurMask.h"
13#include "SkBlurMaskFilter.h"
14#include "SkCanvas.h"
15#include "SkGradientShader.h"
16#include "SkImage.h"
17#include "SkRandom.h"
18#include "SkStream.h"
19#include "SkSurface.h"
20#include "SkTextBlob.h"
21#include "SkTypeface.h"
22
23namespace skiagm {
24class TextBlobMixedSizes : public GM {
25public:
26 // This gm tests that textblobs of mixed sizes with a large glyph will render properly
27 TextBlobMixedSizes(bool useDFT) : fUseDFT(useDFT) {}
28
29protected:
30 void onOnceBeforeDraw() override {
joshualitte46cf962015-08-26 11:19:55 -070031 SkTextBlobBuilder builder;
32
33 // make textblob. To stress distance fields, we choose sizes appropriately
34 SkPaint paint;
35 paint.setAntiAlias(true);
36 paint.setSubpixelText(true);
37 paint.setLCDRenderText(true);
bungeman13b9c952016-05-12 10:09:30 -070038 paint.setTypeface(MakeResourceAsTypeface("/fonts/HangingS.ttf"));
joshualitte46cf962015-08-26 11:19:55 -070039
joshualitt33e91f12015-09-18 11:28:59 -070040 const char* text = "Skia";
joshualitte46cf962015-08-26 11:19:55 -070041
42 // extra large
43 paint.setTextSize(262);
44
45 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0);
46
47 // large
48 SkRect bounds;
49 paint.measureText(text, strlen(text), &bounds);
50 SkScalar yOffset = bounds.height();
51 paint.setTextSize(162);
52
53 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, yOffset);
54
55 // Medium
56 paint.measureText(text, strlen(text), &bounds);
57 yOffset += bounds.height();
58 paint.setTextSize(72);
59
60 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, yOffset);
61
62 // Small
63 paint.measureText(text, strlen(text), &bounds);
64 yOffset += bounds.height();
65 paint.setTextSize(32);
66
67 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, yOffset);
68
69 // micro (will fall out of distance field text even if distance field text is enabled)
70 paint.measureText(text, strlen(text), &bounds);
71 yOffset += bounds.height();
72 paint.setTextSize(14);
73
74 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, yOffset);
75
kkinnunen68c63b32016-03-04 00:12:33 -080076 // Zero size.
77 paint.measureText(text, strlen(text), &bounds);
78 yOffset += bounds.height();
79 paint.setTextSize(0);
80
81 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, yOffset);
82
joshualitte46cf962015-08-26 11:19:55 -070083 // build
fmalita37283c22016-09-13 10:00:23 -070084 fBlob = builder.make();
joshualitte46cf962015-08-26 11:19:55 -070085 }
86
87 SkString onShortName() override {
88 SkString name("textblobmixedsizes");
89 if (fUseDFT) {
90 name.appendf("_df");
91 }
92 return name;
93 }
94
95 SkISize onISize() override {
96 return SkISize::Make(kWidth, kHeight);
97 }
98
99 void onDraw(SkCanvas* inputCanvas) override {
100 SkCanvas* canvas = inputCanvas;
reede8f30622016-03-23 18:59:25 -0700101 sk_sp<SkSurface> surface;
joshualitte46cf962015-08-26 11:19:55 -0700102 if (fUseDFT) {
103#if SK_SUPPORT_GPU
104 // Create a new Canvas to enable DFT
105 GrContext* ctx = inputCanvas->getGrContext();
brianosman52ede1d2016-06-20 08:25:02 -0700106 SkISize size = onISize();
Mike Reed693fdbd2017-01-12 10:13:40 -0500107 sk_sp<SkColorSpace> colorSpace = inputCanvas->imageInfo().refColorSpace();
brianosman52ede1d2016-06-20 08:25:02 -0700108 SkImageInfo info = SkImageInfo::MakeN32(size.width(), size.height(),
109 kPremul_SkAlphaType, colorSpace);
brianosman3a0dbde2016-07-26 11:36:05 -0700110 SkSurfaceProps props(SkSurfaceProps::kUseDeviceIndependentFonts_Flag,
joshualitte46cf962015-08-26 11:19:55 -0700111 SkSurfaceProps::kLegacyFontHost_InitType);
reede8f30622016-03-23 18:59:25 -0700112 surface = SkSurface::MakeRenderTarget(ctx, SkBudgeted::kNo, info, 0, &props);
joshualitte46cf962015-08-26 11:19:55 -0700113 canvas = surface.get() ? surface->getCanvas() : inputCanvas;
114 // init our new canvas with the old canvas's matrix
115 canvas->setMatrix(inputCanvas->getTotalMatrix());
116#endif
117 }
118 canvas->drawColor(sk_tool_utils::color_to_565(SK_ColorWHITE));
119
120 SkRect bounds = fBlob->bounds();
121
mtkleindbfd7ab2016-09-01 11:24:54 -0700122 const int kPadX = SkScalarFloorToInt(bounds.width() / 3);
123 const int kPadY = SkScalarFloorToInt(bounds.height() / 3);
joshualitte46cf962015-08-26 11:19:55 -0700124
125 int rowCount = 0;
126 canvas->translate(SkIntToScalar(kPadX), SkIntToScalar(kPadY));
127 canvas->save();
128 SkRandom random;
129
130 SkPaint paint;
131 if (!fUseDFT) {
132 paint.setColor(sk_tool_utils::color_to_565(SK_ColorWHITE));
133 }
134 paint.setAntiAlias(false);
135
mtkleindbfd7ab2016-09-01 11:24:54 -0700136 const SkScalar kSigma = SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(8));
joshualitte46cf962015-08-26 11:19:55 -0700137
138 // setup blur paint
139 SkPaint blurPaint(paint);
140 blurPaint.setColor(sk_tool_utils::color_to_565(SK_ColorBLACK));
reedefdfd512016-04-04 10:02:58 -0700141 blurPaint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, kSigma));
mtkleindbfd7ab2016-09-01 11:24:54 -0700142
joshualitte46cf962015-08-26 11:19:55 -0700143 for (int i = 0; i < 4; i++) {
144 canvas->save();
145 switch (i % 2) {
146 case 0:
147 canvas->rotate(random.nextF() * 45.f);
148 break;
149 case 1:
150 canvas->rotate(-random.nextF() * 45.f);
151 break;
152 }
153 if (!fUseDFT) {
154 canvas->drawTextBlob(fBlob, 0, 0, blurPaint);
155 }
156 canvas->drawTextBlob(fBlob, 0, 0, paint);
157 canvas->restore();
158 canvas->translate(bounds.width() + SK_Scalar1 * kPadX, 0);
159 ++rowCount;
160 if ((bounds.width() + 2 * kPadX) * rowCount > kWidth) {
161 canvas->restore();
162 canvas->translate(0, bounds.height() + SK_Scalar1 * kPadY);
163 canvas->save();
164 rowCount = 0;
165 }
166 }
167 canvas->restore();
168
169#if SK_SUPPORT_GPU
170 // render offscreen buffer
171 if (surface) {
172 SkAutoCanvasRestore acr(inputCanvas, true);
173 // since we prepended this matrix already, we blit using identity
174 inputCanvas->resetMatrix();
reed9ce9d672016-03-17 10:51:11 -0700175 inputCanvas->drawImage(surface->makeImageSnapshot().get(), 0, 0, nullptr);
joshualitte46cf962015-08-26 11:19:55 -0700176 }
177#endif
178 }
179
180private:
fmalita37283c22016-09-13 10:00:23 -0700181 sk_sp<SkTextBlob> fBlob;
joshualitte46cf962015-08-26 11:19:55 -0700182
mtkleindbfd7ab2016-09-01 11:24:54 -0700183 static constexpr int kWidth = 2100;
184 static constexpr int kHeight = 1900;
joshualitte46cf962015-08-26 11:19:55 -0700185
186 bool fUseDFT;
187
188 typedef GM INHERITED;
189};
190
191//////////////////////////////////////////////////////////////////////////////
192
halcanary385fe4d2015-08-26 13:07:48 -0700193DEF_GM( return new TextBlobMixedSizes(false); )
joshualitte46cf962015-08-26 11:19:55 -0700194#if SK_SUPPORT_GPU
halcanary385fe4d2015-08-26 13:07:48 -0700195DEF_GM( return new TextBlobMixedSizes(true); )
joshualitte46cf962015-08-26 11:19:55 -0700196#endif
197}