blob: 4e8a704dc0ab3b3830a59e706d4890a801ac75f2 [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"
joshualitte49109f2015-07-17 12:47:39 -070011#include "SkFontMgr.h"
Herb Derbyd3895d82018-09-04 13:27:00 -040012#include "SkGlyphRun.h"
joshualitte49109f2015-07-17 12:47:39 -070013#include "SkGraphics.h"
Mike Klein10d66cc2017-11-10 11:33:43 -050014#include "SkPaint.h"
15#include "SkPoint.h"
16#include "SkRandomScalerContext.h"
joshualitte49109f2015-07-17 12:47:39 -070017#include "SkSurface.h"
Mike Klein10d66cc2017-11-10 11:33:43 -050018#include "SkTextBlob.h"
joshualitte49109f2015-07-17 12:47:39 -070019#include "SkTypeface.h"
20
21#ifdef SK_BUILD_FOR_WIN
22 #include "SkTypeface_win.h"
23#endif
24
25#include "Test.h"
26
kkinnunen15302832015-12-01 04:35:26 -080027#include "GrContext.h"
Robert Phillips0c4b7b12018-03-06 08:20:37 -050028#include "GrContextPriv.h"
joshualitte49109f2015-07-17 12:47:39 -070029
fmalita37283c22016-09-13 10:00:23 -070030static void draw(SkCanvas* canvas, int redraw, const SkTArray<sk_sp<SkTextBlob>>& blobs) {
joshualitt404d9d62015-07-22 11:00:32 -070031 int yOffset = 0;
joshualitte49109f2015-07-17 12:47:39 -070032 for (int r = 0; r < redraw; r++) {
33 for (int i = 0; i < blobs.count(); i++) {
fmalita37283c22016-09-13 10:00:23 -070034 const auto& blob = blobs[i];
joshualitt404d9d62015-07-22 11:00:32 -070035 const SkRect& bounds = blob->bounds();
36 yOffset += SkScalarCeilToInt(bounds.height());
joshualitte49109f2015-07-17 12:47:39 -070037 SkPaint paint;
joshualitt404d9d62015-07-22 11:00:32 -070038 canvas->drawTextBlob(blob, 0, SkIntToScalar(yOffset), paint);
joshualitte49109f2015-07-17 12:47:39 -070039 }
40 }
41}
42
joshualitt11dfc8e2015-07-23 08:30:25 -070043static const int kWidth = 1024;
44static const int kHeight = 768;
joshualitte49109f2015-07-17 12:47:39 -070045
Herb Derbyd3895d82018-09-04 13:27:00 -040046static void setup_always_evict_atlas(GrContext* context) {
47 int dim = SkGlyphCacheCommon::kSkSideTooBigForAtlas;
48 // These sizes were selected because they allow each atlas to hold a single plot and will thus
49 // stress the atlas
50 GrDrawOpAtlasConfig configs[3];
51 configs[kA8_GrMaskFormat].fWidth = dim;
52 configs[kA8_GrMaskFormat].fHeight = dim;
53 configs[kA8_GrMaskFormat].fPlotWidth = dim;
54 configs[kA8_GrMaskFormat].fPlotHeight = dim;
55
56 configs[kA565_GrMaskFormat].fWidth = dim;
57 configs[kA565_GrMaskFormat].fHeight = dim;
58 configs[kA565_GrMaskFormat].fPlotWidth = dim;
59 configs[kA565_GrMaskFormat].fPlotHeight = dim;
60
61 configs[kARGB_GrMaskFormat].fWidth = dim;
62 configs[kARGB_GrMaskFormat].fHeight = dim;
63 configs[kARGB_GrMaskFormat].fPlotWidth = dim;
64 configs[kARGB_GrMaskFormat].fPlotHeight = dim;
65
66 context->contextPriv().setTextContextAtlasSizes_ForTesting(configs);
67}
68
joshualitte49109f2015-07-17 12:47:39 -070069// This test hammers the GPU textblobcache and font atlas
kkinnunen15302832015-12-01 04:35:26 -080070static void text_blob_cache_inner(skiatest::Reporter* reporter, GrContext* context,
joshualitt7f9c9eb2015-08-21 11:08:00 -070071 int maxTotalText, int maxGlyphID, int maxFamilies, bool normal,
72 bool stressTest) {
joshualitte49109f2015-07-17 12:47:39 -070073 // setup surface
74 uint32_t flags = 0;
75 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
76
joshualitt7f9c9eb2015-08-21 11:08:00 -070077 // configure our context for maximum stressing of cache and atlas
78 if (stressTest) {
Herb Derbyd3895d82018-09-04 13:27:00 -040079 setup_always_evict_atlas(context);
Robert Phillips0c4b7b12018-03-06 08:20:37 -050080 context->contextPriv().setTextBlobCacheLimit_ForTesting(0);
joshualitt7f9c9eb2015-08-21 11:08:00 -070081 }
82
joshualitt11dfc8e2015-07-23 08:30:25 -070083 SkImageInfo info = SkImageInfo::Make(kWidth, kHeight, kN32_SkColorType, kPremul_SkAlphaType);
reede8f30622016-03-23 18:59:25 -070084 auto surface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0, &props));
joshualitte49109f2015-07-17 12:47:39 -070085 REPORTER_ASSERT(reporter, surface);
86 if (!surface) {
87 return;
88 }
89
90 SkCanvas* canvas = surface->getCanvas();
91
Hal Canary342b7ac2016-11-04 11:49:42 -040092 sk_sp<SkFontMgr> fm(SkFontMgr::RefDefault());
joshualitte49109f2015-07-17 12:47:39 -070093
joshualitt65e96b42015-07-31 11:45:22 -070094 int count = SkMin32(fm->countFamilies(), maxFamilies);
joshualitte49109f2015-07-17 12:47:39 -070095
96 // make a ton of text
joshualitt65e96b42015-07-31 11:45:22 -070097 SkAutoTArray<uint16_t> text(maxTotalText);
98 for (int i = 0; i < maxTotalText; i++) {
99 text[i] = i % maxGlyphID;
joshualitte49109f2015-07-17 12:47:39 -0700100 }
101
102 // generate textblobs
fmalita37283c22016-09-13 10:00:23 -0700103 SkTArray<sk_sp<SkTextBlob>> blobs;
joshualitte49109f2015-07-17 12:47:39 -0700104 for (int i = 0; i < count; i++) {
105 SkPaint paint;
106 paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
joshualitt11dfc8e2015-07-23 08:30:25 -0700107 paint.setTextSize(48); // draw big glyphs to really stress the atlas
joshualitte49109f2015-07-17 12:47:39 -0700108
109 SkString familyName;
110 fm->getFamilyName(i, &familyName);
Hal Canary342b7ac2016-11-04 11:49:42 -0400111 sk_sp<SkFontStyleSet> set(fm->createStyleSet(i));
joshualitte49109f2015-07-17 12:47:39 -0700112 for (int j = 0; j < set->count(); ++j) {
113 SkFontStyle fs;
halcanary96fcdcc2015-08-27 07:41:13 -0700114 set->getStyle(j, &fs, nullptr);
joshualitte49109f2015-07-17 12:47:39 -0700115
joshualitt65e96b42015-07-31 11:45:22 -0700116 // We use a typeface which randomy returns unexpected mask formats to fuzz
bungeman13b9c952016-05-12 10:09:30 -0700117 sk_sp<SkTypeface> orig(set->createTypeface(j));
joshualitt65e96b42015-07-31 11:45:22 -0700118 if (normal) {
119 paint.setTypeface(orig);
120 } else {
bungeman13b9c952016-05-12 10:09:30 -0700121 paint.setTypeface(sk_make_sp<SkRandomTypeface>(orig, paint, true));
joshualitt65e96b42015-07-31 11:45:22 -0700122 }
joshualitte49109f2015-07-17 12:47:39 -0700123
124 SkTextBlobBuilder builder;
125 for (int aa = 0; aa < 2; aa++) {
126 for (int subpixel = 0; subpixel < 2; subpixel++) {
127 for (int lcd = 0; lcd < 2; lcd++) {
128 paint.setAntiAlias(SkToBool(aa));
129 paint.setSubpixelText(SkToBool(subpixel));
130 paint.setLCDRenderText(SkToBool(lcd));
joshualitt65e96b42015-07-31 11:45:22 -0700131 if (!SkToBool(lcd)) {
132 paint.setTextSize(160);
133 }
joshualitte49109f2015-07-17 12:47:39 -0700134 const SkTextBlobBuilder::RunBuffer& run = builder.allocRun(paint,
joshualitt65e96b42015-07-31 11:45:22 -0700135 maxTotalText,
joshualitte49109f2015-07-17 12:47:39 -0700136 0, 0,
halcanary96fcdcc2015-08-27 07:41:13 -0700137 nullptr);
joshualitt65e96b42015-07-31 11:45:22 -0700138 memcpy(run.glyphs, text.get(), maxTotalText * sizeof(uint16_t));
joshualitte49109f2015-07-17 12:47:39 -0700139 }
140 }
141 }
fmalita37283c22016-09-13 10:00:23 -0700142 blobs.emplace_back(builder.make());
joshualitte49109f2015-07-17 12:47:39 -0700143 }
144 }
145
joshualitt11dfc8e2015-07-23 08:30:25 -0700146 // create surface where LCD is impossible
147 info = SkImageInfo::MakeN32Premul(kWidth, kHeight);
148 SkSurfaceProps propsNoLCD(0, kUnknown_SkPixelGeometry);
reede8f30622016-03-23 18:59:25 -0700149 auto surfaceNoLCD(canvas->makeSurface(info, &propsNoLCD));
joshualitt11dfc8e2015-07-23 08:30:25 -0700150 REPORTER_ASSERT(reporter, surface);
151 if (!surface) {
152 return;
153 }
154
155 SkCanvas* canvasNoLCD = surfaceNoLCD->getCanvas();
156
joshualitte49109f2015-07-17 12:47:39 -0700157 // test redraw
158 draw(canvas, 2, blobs);
joshualitt11dfc8e2015-07-23 08:30:25 -0700159 draw(canvasNoLCD, 2, blobs);
joshualitte49109f2015-07-17 12:47:39 -0700160
161 // test draw after free
kkinnunen15302832015-12-01 04:35:26 -0800162 context->freeGpuResources();
joshualitte49109f2015-07-17 12:47:39 -0700163 draw(canvas, 1, blobs);
164
kkinnunen15302832015-12-01 04:35:26 -0800165 context->freeGpuResources();
joshualitt11dfc8e2015-07-23 08:30:25 -0700166 draw(canvasNoLCD, 1, blobs);
167
joshualitte49109f2015-07-17 12:47:39 -0700168 // test draw after abandon
kkinnunen15302832015-12-01 04:35:26 -0800169 context->abandonContext();
joshualitte49109f2015-07-17 12:47:39 -0700170 draw(canvas, 1, blobs);
171}
joshualitt65e96b42015-07-31 11:45:22 -0700172
bsalomon758586c2016-04-06 14:02:39 -0700173DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700174 text_blob_cache_inner(reporter, ctxInfo.grContext(), 1024, 256, 30, true, false);
joshualitt7f9c9eb2015-08-21 11:08:00 -0700175}
176
bsalomon758586c2016-04-06 14:02:39 -0700177DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobStressCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700178 text_blob_cache_inner(reporter, ctxInfo.grContext(), 256, 256, 10, true, true);
joshualitt65e96b42015-07-31 11:45:22 -0700179}
180
bsalomon758586c2016-04-06 14:02:39 -0700181DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobAbnormal, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700182 text_blob_cache_inner(reporter, ctxInfo.grContext(), 256, 256, 10, false, false);
joshualitt7f9c9eb2015-08-21 11:08:00 -0700183}
184
bsalomon758586c2016-04-06 14:02:39 -0700185DEF_GPUTEST_FOR_NULLGL_CONTEXT(TextBlobStressAbnormal, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700186 text_blob_cache_inner(reporter, ctxInfo.grContext(), 256, 256, 10, false, true);
joshualitt65e96b42015-07-31 11:45:22 -0700187}