blob: c7245ce42290df37e27d87e30e2ac44122caa6cc [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) {
Brian Salomonfd98c2c2018-07-31 17:25:29 -040053 if (fProxies[i]->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
Robert Phillips4bc70112018-03-01 10:24:02 -050075void EvictionFunc(GrDrawOpAtlas::AtlasID atlasID, void*) {
76 SkASSERT(0); // The unit test shouldn't exercise this code path
77}
78
79static void check(skiatest::Reporter* r, GrDrawOpAtlas* atlas,
80 uint32_t expectedActive, uint32_t expectedMax, int expectedAlloced) {
81 REPORTER_ASSERT(r, expectedActive == atlas->numActivePages());
82 REPORTER_ASSERT(r, expectedMax == atlas->maxPages());
83 REPORTER_ASSERT(r, expectedAlloced == atlas->numAllocated_TestingOnly());
84}
85
86class TestingUploadTarget : public GrDeferredUploadTarget {
87public:
88 TestingUploadTarget() { }
89
Robert Phillipsd2e9f762018-03-07 11:54:37 -050090 const GrTokenTracker* tokenTracker() final { return &fTokenTracker; }
91 GrTokenTracker* writeableTokenTracker() { return &fTokenTracker; }
Robert Phillips4bc70112018-03-01 10:24:02 -050092
93 GrDeferredUploadToken addInlineUpload(GrDeferredTextureUploadFn&&) final {
94 SkASSERT(0); // this test shouldn't invoke this code path
95 return fTokenTracker.nextDrawToken();
96 }
97
98 virtual GrDeferredUploadToken addASAPUpload(GrDeferredTextureUploadFn&& upload) final {
99 return fTokenTracker.nextTokenToFlush();
100 }
101
102 void issueDrawToken() { fTokenTracker.issueDrawToken(); }
103 void flushToken() { fTokenTracker.flushToken(); }
104
105private:
106 GrTokenTracker fTokenTracker;
107
108 typedef GrDeferredUploadTarget INHERITED;
109};
110
111static bool fill_plot(GrDrawOpAtlas* atlas,
112 GrResourceProvider* resourceProvider,
113 GrDeferredUploadTarget* target,
114 GrDrawOpAtlas::AtlasID* atlasID,
115 int alpha) {
116 SkImageInfo ii = SkImageInfo::MakeA8(kPlotSize, kPlotSize);
117
118 SkBitmap data;
119 data.allocPixels(ii);
120 data.eraseARGB(alpha, 0, 0, 0);
121
122 SkIPoint16 loc;
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500123 GrDrawOpAtlas::ErrorCode code;
124 code = atlas->addToAtlas(resourceProvider, atlasID, target, kPlotSize, kPlotSize,
125 data.getAddr(0, 0), &loc);
126 return GrDrawOpAtlas::ErrorCode::kSucceeded == code;
Robert Phillips4bc70112018-03-01 10:24:02 -0500127}
128
129
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500130// This is a basic DrawOpAtlas test. It simply verifies that multitexture atlases correctly
131// add and remove pages. Note that this is simulating flush-time behavior.
132DEF_GPUTEST_FOR_RENDERING_CONTEXTS(BasicDrawOpAtlas, reporter, ctxInfo) {
Robert Phillips4bc70112018-03-01 10:24:02 -0500133 auto context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500134 auto proxyProvider = context->priv().proxyProvider();
135 auto resourceProvider = context->priv().resourceProvider();
136 auto drawingManager = context->priv().drawingManager();
Robert Phillips0a15cc62019-07-30 12:49:10 -0400137 const GrCaps* caps = context->priv().caps();
Robert Phillips4bc70112018-03-01 10:24:02 -0500138
139 GrOnFlushResourceProvider onFlushResourceProvider(drawingManager);
140 TestingUploadTarget uploadTarget;
141
Robert Phillips0a15cc62019-07-30 12:49:10 -0400142 GrBackendFormat format = caps->getDefaultBackendFormat(GrColorType::kAlpha_8,
143 GrRenderable::kNo);
Greg Daniel4065d452018-11-16 15:43:41 -0500144
Robert Phillips4bc70112018-03-01 10:24:02 -0500145 std::unique_ptr<GrDrawOpAtlas> atlas = GrDrawOpAtlas::Make(
146 proxyProvider,
Greg Daniel4065d452018-11-16 15:43:41 -0500147 format,
Robert Phillips42dda082019-05-14 13:29:45 -0400148 GrColorType::kAlpha_8,
Robert Phillips4bc70112018-03-01 10:24:02 -0500149 kAtlasSize, kAtlasSize,
Jim Van Verthf6206f92018-12-14 08:22:24 -0500150 kAtlasSize/kNumPlots, kAtlasSize/kNumPlots,
Robert Phillips4bc70112018-03-01 10:24:02 -0500151 GrDrawOpAtlas::AllowMultitexturing::kYes,
152 EvictionFunc, nullptr);
153 check(reporter, atlas.get(), 0, 4, 0);
154
155 // Fill up the first level
156 GrDrawOpAtlas::AtlasID atlasIDs[kNumPlots * kNumPlots];
157 for (int i = 0; i < kNumPlots * kNumPlots; ++i) {
158 bool result = fill_plot(atlas.get(), resourceProvider, &uploadTarget, &atlasIDs[i], i*32);
159 REPORTER_ASSERT(reporter, result);
160 check(reporter, atlas.get(), 1, 4, 1);
161 }
162
163 atlas->instantiate(&onFlushResourceProvider);
164 check(reporter, atlas.get(), 1, 4, 1);
165
166 // Force allocation of a second level
167 GrDrawOpAtlas::AtlasID atlasID;
168 bool result = fill_plot(atlas.get(), resourceProvider, &uploadTarget, &atlasID, 4*32);
169 REPORTER_ASSERT(reporter, result);
170 check(reporter, atlas.get(), 2, 4, 2);
171
172 // Simulate a lot of draws using only the first plot. The last texture should be compacted.
173 for (int i = 0; i < 512; ++i) {
174 atlas->setLastUseToken(atlasIDs[0], uploadTarget.tokenTracker()->nextDrawToken());
175 uploadTarget.issueDrawToken();
176 uploadTarget.flushToken();
177 atlas->compact(uploadTarget.tokenTracker()->nextTokenToFlush());
178 }
179
180 check(reporter, atlas.get(), 1, 4, 1);
181}
182
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500183// This test verifies that the GrAtlasTextOp::onPrepare method correctly handles a failure
184// when allocating an atlas page.
185DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrAtlasTextOpPreparation, reporter, ctxInfo) {
186
187 auto context = ctxInfo.grContext();
188
Robert Phillips9da87e02019-02-04 13:26:26 -0500189 auto gpu = context->priv().getGpu();
190 auto resourceProvider = context->priv().resourceProvider();
191 auto drawingManager = context->priv().drawingManager();
Herb Derby26cbe512018-05-24 14:39:01 -0400192 auto textContext = drawingManager->getTextContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500193 auto opMemoryPool = context->priv().opMemoryPool();
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500194
Brian Salomon27ae52c2019-07-03 11:27:44 -0400195 auto rtc = context->priv().makeDeferredRenderTargetContext(SkBackingFit::kApprox, 32, 32,
Brian Salomond6287472019-06-24 15:50:07 -0400196 GrColorType::kRGBA_8888, nullptr);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500197
198 SkPaint paint;
199 paint.setColor(SK_ColorRED);
Mike Reed191e64b2019-01-02 15:35:29 -0500200
201 SkFont font;
202 font.setEdging(SkFont::Edging::kAlias);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500203
204 const char* text = "a";
205
Herb Derbybc6f9c92018-08-08 13:58:45 -0400206 std::unique_ptr<GrDrawOp> op = textContext->createOp_TestingOnly(
Mike Reed191e64b2019-01-02 15:35:29 -0500207 context, textContext, rtc.get(), paint, font, SkMatrix::I(), text, 16, 16);
Chris Dalton6ce447a2019-06-23 18:07:38 -0600208 bool hasMixedSampledCoverage = false;
209 op->finalize(*context->priv().caps(), nullptr, hasMixedSampledCoverage, GrClampType::kAuto);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500210
211 TestingUploadTarget uploadTarget;
212
Robert Phillipse5f73282019-06-18 17:15:04 -0400213 GrOpFlushState flushState(gpu, resourceProvider, uploadTarget.writeableTokenTracker());
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500214 GrOpFlushState::OpArgs opArgs = {
215 op.get(),
216 rtc->asRenderTargetProxy(),
217 nullptr,
Greg Daniel2c3398d2019-06-19 11:58:01 -0400218 rtc->asRenderTargetProxy()->outputSwizzle(),
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500219 GrXferProcessor::DstProxy(nullptr, SkIPoint::Make(0, 0))
220 };
221
222 // Cripple the atlas manager so it can't allocate any pages. This will force a failure
223 // in the preparation of the text op
Robert Phillips9da87e02019-02-04 13:26:26 -0500224 auto atlasManager = context->priv().getAtlasManager();
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500225 unsigned int numProxies;
226 atlasManager->getProxies(kA8_GrMaskFormat, &numProxies);
227 atlasManager->setMaxPages_TestingOnly(0);
228
229 flushState.setOpArgs(&opArgs);
230 op->prepare(&flushState);
231 flushState.setOpArgs(nullptr);
Robert Phillipsc994a932018-06-19 13:09:54 -0400232 opMemoryPool->release(std::move(op));
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500233}
Herb Derby15d9ef22018-10-18 13:41:32 -0400234
Jim Van Verthf6206f92018-12-14 08:22:24 -0500235void test_atlas_config(skiatest::Reporter* reporter, int maxTextureSize, size_t maxBytes,
236 GrMaskFormat maskFormat, SkISize expectedDimensions,
237 SkISize expectedPlotDimensions) {
238 GrDrawOpAtlasConfig config(maxTextureSize, maxBytes);
239 REPORTER_ASSERT(reporter, config.atlasDimensions(maskFormat) == expectedDimensions);
240 REPORTER_ASSERT(reporter, config.plotDimensions(maskFormat) == expectedPlotDimensions);
241}
242
Herb Derby15d9ef22018-10-18 13:41:32 -0400243DEF_GPUTEST(GrDrawOpAtlasConfig_Basic, reporter, options) {
Jim Van Verthf6206f92018-12-14 08:22:24 -0500244 // 1/4 MB
245 test_atlas_config(reporter, 65536, 256 * 1024, kARGB_GrMaskFormat,
246 { 256, 256 }, { 256, 256 });
247 test_atlas_config(reporter, 65536, 256 * 1024, kA8_GrMaskFormat,
248 { 512, 512 }, { 256, 256 });
249 // 1/2 MB
250 test_atlas_config(reporter, 65536, 512 * 1024, kARGB_GrMaskFormat,
251 { 512, 256 }, { 256, 256 });
252 test_atlas_config(reporter, 65536, 512 * 1024, kA8_GrMaskFormat,
253 { 1024, 512 }, { 256, 256 });
254 // 1 MB
255 test_atlas_config(reporter, 65536, 1024 * 1024, kARGB_GrMaskFormat,
256 { 512, 512 }, { 256, 256 });
257 test_atlas_config(reporter, 65536, 1024 * 1024, kA8_GrMaskFormat,
258 { 1024, 1024 }, { 256, 256 });
259 // 2 MB
260 test_atlas_config(reporter, 65536, 2 * 1024 * 1024, kARGB_GrMaskFormat,
261 { 1024, 512 }, { 256, 256 });
262 test_atlas_config(reporter, 65536, 2 * 1024 * 1024, kA8_GrMaskFormat,
263 { 2048, 1024 }, { 512, 256 });
264 // 4 MB
265 test_atlas_config(reporter, 65536, 4 * 1024 * 1024, kARGB_GrMaskFormat,
266 { 1024, 1024 }, { 256, 256 });
267 test_atlas_config(reporter, 65536, 4 * 1024 * 1024, kA8_GrMaskFormat,
Jim Van Verth578b0892018-12-20 20:48:55 +0000268 { 2048, 2048 }, { 512, 512 });
Jim Van Verthf6206f92018-12-14 08:22:24 -0500269 // 8 MB
270 test_atlas_config(reporter, 65536, 8 * 1024 * 1024, kARGB_GrMaskFormat,
271 { 2048, 1024 }, { 256, 256 });
272 test_atlas_config(reporter, 65536, 8 * 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 // 16 MB (should be same as 8 MB)
275 test_atlas_config(reporter, 65536, 16 * 1024 * 1024, kARGB_GrMaskFormat,
276 { 2048, 1024 }, { 256, 256 });
277 test_atlas_config(reporter, 65536, 16 * 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
280 // 4MB, restricted texture size
281 test_atlas_config(reporter, 1024, 8 * 1024 * 1024, kARGB_GrMaskFormat,
282 { 1024, 1024 }, { 256, 256 });
283 test_atlas_config(reporter, 1024, 8 * 1024 * 1024, kA8_GrMaskFormat,
284 { 1024, 1024 }, { 256, 256 });
285
286 // 3 MB (should be same as 2 MB)
287 test_atlas_config(reporter, 65536, 3 * 1024 * 1024, kARGB_GrMaskFormat,
288 { 1024, 512 }, { 256, 256 });
289 test_atlas_config(reporter, 65536, 3 * 1024 * 1024, kA8_GrMaskFormat,
290 { 2048, 1024 }, { 512, 256 });
291
292 // minimum size
293 test_atlas_config(reporter, 65536, 0, kARGB_GrMaskFormat,
294 { 256, 256 }, { 256, 256 });
295 test_atlas_config(reporter, 65536, 0, kA8_GrMaskFormat,
296 { 512, 512 }, { 256, 256 });
Brian Salomon58f153c2018-10-18 21:51:15 -0400297}