blob: 23f45a4cad22b57ddd7626a6ad69f4bd87669b01 [file] [log] [blame]
joshualitte49109f2015-07-17 12:47:39 -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 "sk_tool_utils.h"
joshualitt7f9c9eb2015-08-21 11:08:00 -07009
joshualitte49109f2015-07-17 12:47:39 -070010#include "SkCanvas.h"
11#include "SkPaint.h"
12#include "SkPoint.h"
13#include "SkTextBlob.h"
14#include "SkFontMgr.h"
15#include "SkGraphics.h"
16#include "SkSurface.h"
17#include "SkTypeface.h"
joshualitt65e96b42015-07-31 11:45:22 -070018#include "../src/fonts/SkRandomScalerContext.h"
joshualitte49109f2015-07-17 12:47:39 -070019
20#ifdef SK_BUILD_FOR_WIN
21 #include "SkTypeface_win.h"
22#endif
23
24#include "Test.h"
25
26#if SK_SUPPORT_GPU
kkinnunen15302832015-12-01 04:35:26 -080027#include "GrContext.h"
joshualitt7f9c9eb2015-08-21 11:08:00 -070028#include "GrTest.h"
joshualitte49109f2015-07-17 12:47:39 -070029
30struct TextBlobWrapper {
joshualittbedf7e52015-07-23 08:09:35 -070031 // This class assumes it 'owns' the textblob it wraps, and thus does not need to take a ref
32 explicit TextBlobWrapper(const SkTextBlob* blob) : fBlob(blob) {}
joshualitte49109f2015-07-17 12:47:39 -070033 TextBlobWrapper(const TextBlobWrapper& blob) : fBlob(SkRef(blob.fBlob.get())) {}
34
35 SkAutoTUnref<const SkTextBlob> fBlob;
36};
37
38static void draw(SkCanvas* canvas, int redraw, const SkTArray<TextBlobWrapper>& blobs) {
joshualitt404d9d62015-07-22 11:00:32 -070039 int yOffset = 0;
joshualitte49109f2015-07-17 12:47:39 -070040 for (int r = 0; r < redraw; r++) {
41 for (int i = 0; i < blobs.count(); i++) {
joshualitt404d9d62015-07-22 11:00:32 -070042 const SkTextBlob* blob = blobs[i].fBlob.get();
43 const SkRect& bounds = blob->bounds();
44 yOffset += SkScalarCeilToInt(bounds.height());
joshualitte49109f2015-07-17 12:47:39 -070045 SkPaint paint;
joshualitt404d9d62015-07-22 11:00:32 -070046 canvas->drawTextBlob(blob, 0, SkIntToScalar(yOffset), paint);
joshualitte49109f2015-07-17 12:47:39 -070047 }
48 }
49}
50
joshualitt11dfc8e2015-07-23 08:30:25 -070051static const int kWidth = 1024;
52static const int kHeight = 768;
joshualitte49109f2015-07-17 12:47:39 -070053
54// This test hammers the GPU textblobcache and font atlas
kkinnunen15302832015-12-01 04:35:26 -080055static void text_blob_cache_inner(skiatest::Reporter* reporter, GrContext* context,
joshualitt7f9c9eb2015-08-21 11:08:00 -070056 int maxTotalText, int maxGlyphID, int maxFamilies, bool normal,
57 bool stressTest) {
joshualitte49109f2015-07-17 12:47:39 -070058 // setup surface
59 uint32_t flags = 0;
60 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
61
joshualitt7f9c9eb2015-08-21 11:08:00 -070062 // configure our context for maximum stressing of cache and atlas
63 if (stressTest) {
kkinnunen15302832015-12-01 04:35:26 -080064 GrTest::SetupAlwaysEvictAtlas(context);
65 context->setTextBlobCacheLimit_ForTesting(0);
joshualitt7f9c9eb2015-08-21 11:08:00 -070066 }
67
joshualitt11dfc8e2015-07-23 08:30:25 -070068 SkImageInfo info = SkImageInfo::Make(kWidth, kHeight, kN32_SkColorType, kPremul_SkAlphaType);
reede8f30622016-03-23 18:59:25 -070069 auto surface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0, &props));
joshualitte49109f2015-07-17 12:47:39 -070070 REPORTER_ASSERT(reporter, surface);
71 if (!surface) {
72 return;
73 }
74
75 SkCanvas* canvas = surface->getCanvas();
76
77 SkAutoTUnref<SkFontMgr> fm(SkFontMgr::RefDefault());
78
joshualitt65e96b42015-07-31 11:45:22 -070079 int count = SkMin32(fm->countFamilies(), maxFamilies);
joshualitte49109f2015-07-17 12:47:39 -070080
81 // make a ton of text
joshualitt65e96b42015-07-31 11:45:22 -070082 SkAutoTArray<uint16_t> text(maxTotalText);
83 for (int i = 0; i < maxTotalText; i++) {
84 text[i] = i % maxGlyphID;
joshualitte49109f2015-07-17 12:47:39 -070085 }
86
87 // generate textblobs
88 SkTArray<TextBlobWrapper> blobs;
89 for (int i = 0; i < count; i++) {
90 SkPaint paint;
91 paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
joshualitt11dfc8e2015-07-23 08:30:25 -070092 paint.setTextSize(48); // draw big glyphs to really stress the atlas
joshualitte49109f2015-07-17 12:47:39 -070093
94 SkString familyName;
95 fm->getFamilyName(i, &familyName);
96 SkAutoTUnref<SkFontStyleSet> set(fm->createStyleSet(i));
97 for (int j = 0; j < set->count(); ++j) {
98 SkFontStyle fs;
halcanary96fcdcc2015-08-27 07:41:13 -070099 set->getStyle(j, &fs, nullptr);
joshualitte49109f2015-07-17 12:47:39 -0700100
joshualitt65e96b42015-07-31 11:45:22 -0700101 // We use a typeface which randomy returns unexpected mask formats to fuzz
102 SkAutoTUnref<SkTypeface> orig(set->createTypeface(j));
103 if (normal) {
104 paint.setTypeface(orig);
105 } else {
halcanary385fe4d2015-08-26 13:07:48 -0700106 SkAutoTUnref<SkTypeface> typeface(new SkRandomTypeface(orig, paint, true));
joshualitt65e96b42015-07-31 11:45:22 -0700107 paint.setTypeface(typeface);
108 }
joshualitte49109f2015-07-17 12:47:39 -0700109
110 SkTextBlobBuilder builder;
111 for (int aa = 0; aa < 2; aa++) {
112 for (int subpixel = 0; subpixel < 2; subpixel++) {
113 for (int lcd = 0; lcd < 2; lcd++) {
114 paint.setAntiAlias(SkToBool(aa));
115 paint.setSubpixelText(SkToBool(subpixel));
116 paint.setLCDRenderText(SkToBool(lcd));
joshualitt65e96b42015-07-31 11:45:22 -0700117 if (!SkToBool(lcd)) {
118 paint.setTextSize(160);
119 }
joshualitte49109f2015-07-17 12:47:39 -0700120 const SkTextBlobBuilder::RunBuffer& run = builder.allocRun(paint,
joshualitt65e96b42015-07-31 11:45:22 -0700121 maxTotalText,
joshualitte49109f2015-07-17 12:47:39 -0700122 0, 0,
halcanary96fcdcc2015-08-27 07:41:13 -0700123 nullptr);
joshualitt65e96b42015-07-31 11:45:22 -0700124 memcpy(run.glyphs, text.get(), maxTotalText * sizeof(uint16_t));
joshualitte49109f2015-07-17 12:47:39 -0700125 }
126 }
127 }
bungeman85dc3592016-02-09 11:32:56 -0800128 blobs.emplace_back(builder.build());
joshualitte49109f2015-07-17 12:47:39 -0700129 }
130 }
131
joshualitt11dfc8e2015-07-23 08:30:25 -0700132 // create surface where LCD is impossible
133 info = SkImageInfo::MakeN32Premul(kWidth, kHeight);
134 SkSurfaceProps propsNoLCD(0, kUnknown_SkPixelGeometry);
reede8f30622016-03-23 18:59:25 -0700135 auto surfaceNoLCD(canvas->makeSurface(info, &propsNoLCD));
joshualitt11dfc8e2015-07-23 08:30:25 -0700136 REPORTER_ASSERT(reporter, surface);
137 if (!surface) {
138 return;
139 }
140
141 SkCanvas* canvasNoLCD = surfaceNoLCD->getCanvas();
142
joshualitte49109f2015-07-17 12:47:39 -0700143 // test redraw
144 draw(canvas, 2, blobs);
joshualitt11dfc8e2015-07-23 08:30:25 -0700145 draw(canvasNoLCD, 2, blobs);
joshualitte49109f2015-07-17 12:47:39 -0700146
147 // test draw after free
kkinnunen15302832015-12-01 04:35:26 -0800148 context->freeGpuResources();
joshualitte49109f2015-07-17 12:47:39 -0700149 draw(canvas, 1, blobs);
150
kkinnunen15302832015-12-01 04:35:26 -0800151 context->freeGpuResources();
joshualitt11dfc8e2015-07-23 08:30:25 -0700152 draw(canvasNoLCD, 1, blobs);
153
joshualitte49109f2015-07-17 12:47:39 -0700154 // test draw after abandon
kkinnunen15302832015-12-01 04:35:26 -0800155 context->abandonContext();
joshualitte49109f2015-07-17 12:47:39 -0700156 draw(canvas, 1, blobs);
157}
joshualitt65e96b42015-07-31 11:45:22 -0700158
bsalomon758586c2016-04-06 14:02:39 -0700159DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700160 text_blob_cache_inner(reporter, ctxInfo.grContext(), 1024, 256, 30, true, false);
joshualitt7f9c9eb2015-08-21 11:08:00 -0700161}
162
bsalomon758586c2016-04-06 14:02:39 -0700163DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobStressCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700164 text_blob_cache_inner(reporter, ctxInfo.grContext(), 256, 256, 10, true, true);
joshualitt65e96b42015-07-31 11:45:22 -0700165}
166
bsalomon758586c2016-04-06 14:02:39 -0700167DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobAbnormal, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700168 text_blob_cache_inner(reporter, ctxInfo.grContext(), 256, 256, 10, false, false);
joshualitt7f9c9eb2015-08-21 11:08:00 -0700169}
170
bsalomon758586c2016-04-06 14:02:39 -0700171DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobStressAbnormal, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700172 text_blob_cache_inner(reporter, ctxInfo.grContext(), 256, 256, 10, false, true);
joshualitt65e96b42015-07-31 11:45:22 -0700173}
joshualitte49109f2015-07-17 12:47:39 -0700174#endif