blob: 51834ad5e86d8a273fe7dceca5824ad75a42e16e [file] [log] [blame]
Robert Phillips4bc70112018-03-01 10:24:02 -05001/*
2 * Copyright 2018 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkBitmap.h"
9#include "include/core/SkColor.h"
10#include "include/core/SkColorSpace.h"
Ben Wagner9707a7e2019-05-06 17:17:19 -040011#include "include/core/SkFont.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/core/SkImageInfo.h"
13#include "include/core/SkMatrix.h"
14#include "include/core/SkPaint.h"
15#include "include/core/SkPoint.h"
16#include "include/core/SkRefCnt.h"
Ben Wagner9707a7e2019-05-06 17:17:19 -040017#include "include/core/SkSize.h"
18#include "include/core/SkTypes.h"
19#include "include/gpu/GrBackendSurface.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "include/gpu/GrContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "include/private/GrTypesPriv.h"
22#include "src/core/SkIPoint16.h"
Ben Wagner9707a7e2019-05-06 17:17:19 -040023#include "src/gpu/GrCaps.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "src/gpu/GrContextPriv.h"
25#include "src/gpu/GrDeferredUpload.h"
26#include "src/gpu/GrDrawOpAtlas.h"
27#include "src/gpu/GrDrawingManager.h"
28#include "src/gpu/GrMemoryPool.h"
29#include "src/gpu/GrOnFlushResourceProvider.h"
30#include "src/gpu/GrOpFlushState.h"
31#include "src/gpu/GrRenderTargetContext.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040032#include "src/gpu/GrTextureProxy.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050033#include "src/gpu/GrXferProcessor.h"
34#include "src/gpu/ops/GrDrawOp.h"
Ben Wagner9707a7e2019-05-06 17:17:19 -040035#include "src/gpu/ops/GrOp.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050036#include "src/gpu/text/GrAtlasManager.h"
37#include "src/gpu/text/GrTextContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050038#include "tests/Test.h"
39#include "tools/gpu/GrContextFactory.h"
Ben Wagnerd90cd3b2018-05-22 10:48:08 -040040
41#include <memory>
Ben Wagner9707a7e2019-05-06 17:17:19 -040042#include <utility>
Ben Wagnerd90cd3b2018-05-22 10:48:08 -040043
44class GrResourceProvider;
Robert Phillips4bc70112018-03-01 10:24:02 -050045
46static const int kNumPlots = 2;
47static const int kPlotSize = 32;
48static const int kAtlasSize = kNumPlots * kPlotSize;
49
50int GrDrawOpAtlas::numAllocated_TestingOnly() const {
51 int count = 0;
52 for (uint32_t i = 0; i < this->maxPages(); ++i) {
Greg Daniel9715b6c2019-12-10 15:03:10 -050053 if (fViews[i].proxy()->isInstantiated()) {
Robert Phillips4bc70112018-03-01 10:24:02 -050054 ++count;
55 }
56 }
57
58 return count;
59}
60
Kevin Lubickb5502b22018-03-12 10:17:06 -040061void GrAtlasManager::setMaxPages_TestingOnly(uint32_t maxPages) {
Robert Phillipsd2e9f762018-03-07 11:54:37 -050062 for (int i = 0; i < kMaskFormatCount; i++) {
63 if (fAtlases[i]) {
Kevin Lubickb5502b22018-03-12 10:17:06 -040064 fAtlases[i]->setMaxPages_TestingOnly(maxPages);
Robert Phillipsd2e9f762018-03-07 11:54:37 -050065 }
66 }
67}
68
69void GrDrawOpAtlas::setMaxPages_TestingOnly(uint32_t maxPages) {
70 SkASSERT(!fNumActivePages);
71
72 fMaxPages = maxPages;
73}
74
Herb Derby1a496c52020-01-22 17:26:56 -050075class DummyEvict : public GrDrawOpAtlas::EvictionCallback {
76public:
77 void evict(GrDrawOpAtlas::AtlasID id) override {
78 SkASSERT(0); // The unit test shouldn't exercise this code path
79 }
80};
Robert Phillips4bc70112018-03-01 10:24:02 -050081
82static void check(skiatest::Reporter* r, GrDrawOpAtlas* atlas,
83 uint32_t expectedActive, uint32_t expectedMax, int expectedAlloced) {
84 REPORTER_ASSERT(r, expectedActive == atlas->numActivePages());
85 REPORTER_ASSERT(r, expectedMax == atlas->maxPages());
86 REPORTER_ASSERT(r, expectedAlloced == atlas->numAllocated_TestingOnly());
87}
88
89class TestingUploadTarget : public GrDeferredUploadTarget {
90public:
91 TestingUploadTarget() { }
92
Robert Phillipsd2e9f762018-03-07 11:54:37 -050093 const GrTokenTracker* tokenTracker() final { return &fTokenTracker; }
94 GrTokenTracker* writeableTokenTracker() { return &fTokenTracker; }
Robert Phillips4bc70112018-03-01 10:24:02 -050095
96 GrDeferredUploadToken addInlineUpload(GrDeferredTextureUploadFn&&) final {
97 SkASSERT(0); // this test shouldn't invoke this code path
98 return fTokenTracker.nextDrawToken();
99 }
100
101 virtual GrDeferredUploadToken addASAPUpload(GrDeferredTextureUploadFn&& upload) final {
102 return fTokenTracker.nextTokenToFlush();
103 }
104
105 void issueDrawToken() { fTokenTracker.issueDrawToken(); }
106 void flushToken() { fTokenTracker.flushToken(); }
107
108private:
109 GrTokenTracker fTokenTracker;
110
111 typedef GrDeferredUploadTarget INHERITED;
112};
113
114static bool fill_plot(GrDrawOpAtlas* atlas,
115 GrResourceProvider* resourceProvider,
116 GrDeferredUploadTarget* target,
117 GrDrawOpAtlas::AtlasID* atlasID,
118 int alpha) {
119 SkImageInfo ii = SkImageInfo::MakeA8(kPlotSize, kPlotSize);
120
121 SkBitmap data;
122 data.allocPixels(ii);
123 data.eraseARGB(alpha, 0, 0, 0);
124
125 SkIPoint16 loc;
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500126 GrDrawOpAtlas::ErrorCode code;
127 code = atlas->addToAtlas(resourceProvider, atlasID, target, kPlotSize, kPlotSize,
128 data.getAddr(0, 0), &loc);
129 return GrDrawOpAtlas::ErrorCode::kSucceeded == code;
Robert Phillips4bc70112018-03-01 10:24:02 -0500130}
131
132
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500133// This is a basic DrawOpAtlas test. It simply verifies that multitexture atlases correctly
134// add and remove pages. Note that this is simulating flush-time behavior.
135DEF_GPUTEST_FOR_RENDERING_CONTEXTS(BasicDrawOpAtlas, reporter, ctxInfo) {
Robert Phillips4bc70112018-03-01 10:24:02 -0500136 auto context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500137 auto proxyProvider = context->priv().proxyProvider();
138 auto resourceProvider = context->priv().resourceProvider();
139 auto drawingManager = context->priv().drawingManager();
Robert Phillips0a15cc62019-07-30 12:49:10 -0400140 const GrCaps* caps = context->priv().caps();
Robert Phillips4bc70112018-03-01 10:24:02 -0500141
142 GrOnFlushResourceProvider onFlushResourceProvider(drawingManager);
143 TestingUploadTarget uploadTarget;
144
Robert Phillips0a15cc62019-07-30 12:49:10 -0400145 GrBackendFormat format = caps->getDefaultBackendFormat(GrColorType::kAlpha_8,
146 GrRenderable::kNo);
Greg Daniel4065d452018-11-16 15:43:41 -0500147
Herb Derby1a496c52020-01-22 17:26:56 -0500148 DummyEvict evictor;
149
Robert Phillips4bc70112018-03-01 10:24:02 -0500150 std::unique_ptr<GrDrawOpAtlas> atlas = GrDrawOpAtlas::Make(
151 proxyProvider,
Greg Daniel4065d452018-11-16 15:43:41 -0500152 format,
Robert Phillips42dda082019-05-14 13:29:45 -0400153 GrColorType::kAlpha_8,
Robert Phillips4bc70112018-03-01 10:24:02 -0500154 kAtlasSize, kAtlasSize,
Jim Van Verthf6206f92018-12-14 08:22:24 -0500155 kAtlasSize/kNumPlots, kAtlasSize/kNumPlots,
Robert Phillips4bc70112018-03-01 10:24:02 -0500156 GrDrawOpAtlas::AllowMultitexturing::kYes,
Herb Derby1a496c52020-01-22 17:26:56 -0500157 &evictor);
Robert Phillips4bc70112018-03-01 10:24:02 -0500158 check(reporter, atlas.get(), 0, 4, 0);
159
160 // Fill up the first level
161 GrDrawOpAtlas::AtlasID atlasIDs[kNumPlots * kNumPlots];
162 for (int i = 0; i < kNumPlots * kNumPlots; ++i) {
163 bool result = fill_plot(atlas.get(), resourceProvider, &uploadTarget, &atlasIDs[i], i*32);
164 REPORTER_ASSERT(reporter, result);
165 check(reporter, atlas.get(), 1, 4, 1);
166 }
167
168 atlas->instantiate(&onFlushResourceProvider);
169 check(reporter, atlas.get(), 1, 4, 1);
170
171 // Force allocation of a second level
172 GrDrawOpAtlas::AtlasID atlasID;
173 bool result = fill_plot(atlas.get(), resourceProvider, &uploadTarget, &atlasID, 4*32);
174 REPORTER_ASSERT(reporter, result);
175 check(reporter, atlas.get(), 2, 4, 2);
176
177 // Simulate a lot of draws using only the first plot. The last texture should be compacted.
178 for (int i = 0; i < 512; ++i) {
179 atlas->setLastUseToken(atlasIDs[0], uploadTarget.tokenTracker()->nextDrawToken());
180 uploadTarget.issueDrawToken();
181 uploadTarget.flushToken();
182 atlas->compact(uploadTarget.tokenTracker()->nextTokenToFlush());
183 }
184
185 check(reporter, atlas.get(), 1, 4, 1);
186}
187
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500188// This test verifies that the GrAtlasTextOp::onPrepare method correctly handles a failure
189// when allocating an atlas page.
190DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrAtlasTextOpPreparation, reporter, ctxInfo) {
191
192 auto context = ctxInfo.grContext();
193
Robert Phillips9da87e02019-02-04 13:26:26 -0500194 auto gpu = context->priv().getGpu();
195 auto resourceProvider = context->priv().resourceProvider();
196 auto drawingManager = context->priv().drawingManager();
Herb Derby26cbe512018-05-24 14:39:01 -0400197 auto textContext = drawingManager->getTextContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500198 auto opMemoryPool = context->priv().opMemoryPool();
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500199
Greg Daniele20fcad2020-01-08 11:52:34 -0500200 auto rtc = GrRenderTargetContext::Make(
201 context, GrColorType::kRGBA_8888, nullptr, SkBackingFit::kApprox, {32, 32});
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500202
203 SkPaint paint;
204 paint.setColor(SK_ColorRED);
Mike Reed191e64b2019-01-02 15:35:29 -0500205
206 SkFont font;
207 font.setEdging(SkFont::Edging::kAlias);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500208
209 const char* text = "a";
210
Herb Derbybc6f9c92018-08-08 13:58:45 -0400211 std::unique_ptr<GrDrawOp> op = textContext->createOp_TestingOnly(
Mike Reed191e64b2019-01-02 15:35:29 -0500212 context, textContext, rtc.get(), paint, font, SkMatrix::I(), text, 16, 16);
Chris Dalton6ce447a2019-06-23 18:07:38 -0600213 bool hasMixedSampledCoverage = false;
214 op->finalize(*context->priv().caps(), nullptr, hasMixedSampledCoverage, GrClampType::kAuto);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500215
216 TestingUploadTarget uploadTarget;
217
Robert Phillipse5f73282019-06-18 17:15:04 -0400218 GrOpFlushState flushState(gpu, resourceProvider, uploadTarget.writeableTokenTracker());
Greg Daniel16f5c652019-10-29 11:26:01 -0400219
220 GrSurfaceProxyView surfaceView = rtc->outputSurfaceView();
Robert Phillips901aff02019-10-08 12:32:56 -0400221 GrOpFlushState::OpArgs opArgs(op.get(),
Greg Daniel16f5c652019-10-29 11:26:01 -0400222 &surfaceView,
Robert Phillips901aff02019-10-08 12:32:56 -0400223 nullptr,
Greg Daniel524e28b2019-11-01 11:48:53 -0400224 GrXferProcessor::DstProxyView(GrSurfaceProxyView(),
225 SkIPoint::Make(0, 0)));
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500226
227 // Cripple the atlas manager so it can't allocate any pages. This will force a failure
228 // in the preparation of the text op
Robert Phillips9da87e02019-02-04 13:26:26 -0500229 auto atlasManager = context->priv().getAtlasManager();
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500230 unsigned int numProxies;
Greg Daniel9715b6c2019-12-10 15:03:10 -0500231 atlasManager->getViews(kA8_GrMaskFormat, &numProxies);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500232 atlasManager->setMaxPages_TestingOnly(0);
233
234 flushState.setOpArgs(&opArgs);
235 op->prepare(&flushState);
236 flushState.setOpArgs(nullptr);
Robert Phillipsc994a932018-06-19 13:09:54 -0400237 opMemoryPool->release(std::move(op));
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500238}
Herb Derby15d9ef22018-10-18 13:41:32 -0400239
Jim Van Verthf6206f92018-12-14 08:22:24 -0500240void test_atlas_config(skiatest::Reporter* reporter, int maxTextureSize, size_t maxBytes,
241 GrMaskFormat maskFormat, SkISize expectedDimensions,
242 SkISize expectedPlotDimensions) {
243 GrDrawOpAtlasConfig config(maxTextureSize, maxBytes);
244 REPORTER_ASSERT(reporter, config.atlasDimensions(maskFormat) == expectedDimensions);
245 REPORTER_ASSERT(reporter, config.plotDimensions(maskFormat) == expectedPlotDimensions);
246}
247
Herb Derby15d9ef22018-10-18 13:41:32 -0400248DEF_GPUTEST(GrDrawOpAtlasConfig_Basic, reporter, options) {
Jim Van Verthf6206f92018-12-14 08:22:24 -0500249 // 1/4 MB
250 test_atlas_config(reporter, 65536, 256 * 1024, kARGB_GrMaskFormat,
251 { 256, 256 }, { 256, 256 });
252 test_atlas_config(reporter, 65536, 256 * 1024, kA8_GrMaskFormat,
253 { 512, 512 }, { 256, 256 });
254 // 1/2 MB
255 test_atlas_config(reporter, 65536, 512 * 1024, kARGB_GrMaskFormat,
256 { 512, 256 }, { 256, 256 });
257 test_atlas_config(reporter, 65536, 512 * 1024, kA8_GrMaskFormat,
258 { 1024, 512 }, { 256, 256 });
259 // 1 MB
260 test_atlas_config(reporter, 65536, 1024 * 1024, kARGB_GrMaskFormat,
261 { 512, 512 }, { 256, 256 });
262 test_atlas_config(reporter, 65536, 1024 * 1024, kA8_GrMaskFormat,
263 { 1024, 1024 }, { 256, 256 });
264 // 2 MB
265 test_atlas_config(reporter, 65536, 2 * 1024 * 1024, kARGB_GrMaskFormat,
266 { 1024, 512 }, { 256, 256 });
267 test_atlas_config(reporter, 65536, 2 * 1024 * 1024, kA8_GrMaskFormat,
268 { 2048, 1024 }, { 512, 256 });
269 // 4 MB
270 test_atlas_config(reporter, 65536, 4 * 1024 * 1024, kARGB_GrMaskFormat,
271 { 1024, 1024 }, { 256, 256 });
272 test_atlas_config(reporter, 65536, 4 * 1024 * 1024, kA8_GrMaskFormat,
Jim Van Verth578b0892018-12-20 20:48:55 +0000273 { 2048, 2048 }, { 512, 512 });
Jim Van Verthf6206f92018-12-14 08:22:24 -0500274 // 8 MB
275 test_atlas_config(reporter, 65536, 8 * 1024 * 1024, kARGB_GrMaskFormat,
276 { 2048, 1024 }, { 256, 256 });
277 test_atlas_config(reporter, 65536, 8 * 1024 * 1024, kA8_GrMaskFormat,
Jim Van Verth578b0892018-12-20 20:48:55 +0000278 { 2048, 2048 }, { 512, 512 });
Jim Van Verthf6206f92018-12-14 08:22:24 -0500279 // 16 MB (should be same as 8 MB)
280 test_atlas_config(reporter, 65536, 16 * 1024 * 1024, kARGB_GrMaskFormat,
281 { 2048, 1024 }, { 256, 256 });
282 test_atlas_config(reporter, 65536, 16 * 1024 * 1024, kA8_GrMaskFormat,
Jim Van Verth578b0892018-12-20 20:48:55 +0000283 { 2048, 2048 }, { 512, 512 });
Jim Van Verthf6206f92018-12-14 08:22:24 -0500284
285 // 4MB, restricted texture size
286 test_atlas_config(reporter, 1024, 8 * 1024 * 1024, kARGB_GrMaskFormat,
287 { 1024, 1024 }, { 256, 256 });
288 test_atlas_config(reporter, 1024, 8 * 1024 * 1024, kA8_GrMaskFormat,
289 { 1024, 1024 }, { 256, 256 });
290
291 // 3 MB (should be same as 2 MB)
292 test_atlas_config(reporter, 65536, 3 * 1024 * 1024, kARGB_GrMaskFormat,
293 { 1024, 512 }, { 256, 256 });
294 test_atlas_config(reporter, 65536, 3 * 1024 * 1024, kA8_GrMaskFormat,
295 { 2048, 1024 }, { 512, 256 });
296
297 // minimum size
298 test_atlas_config(reporter, 65536, 0, kARGB_GrMaskFormat,
299 { 256, 256 }, { 256, 256 });
300 test_atlas_config(reporter, 65536, 0, kA8_GrMaskFormat,
301 { 512, 512 }, { 256, 256 });
Brian Salomon58f153c2018-10-18 21:51:15 -0400302}