blob: e62d9538b355ce86ac4e48c350a4dc51635c16d4 [file] [log] [blame]
bsalomon@google.com686bcb82013-04-09 15:04:12 +00001/*
2 * Copyright 2013 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
Brian Salomon614c1a82018-12-19 15:42:06 -05008#include <set>
9#include "GrClip.h"
bsalomon@google.com686bcb82013-04-09 15:04:12 +000010#include "GrContext.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +000011#include "GrContextPriv.h"
bsalomon091f60c2015-11-10 11:54:56 -080012#include "GrGpu.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050013#include "GrProxyProvider.h"
Robert Phillips2890fbf2017-07-26 15:48:41 -040014#include "GrRenderTarget.h"
Brian Osman32342f02017-03-04 08:12:46 -050015#include "GrResourceProvider.h"
bsalomon@google.com686bcb82013-04-09 15:04:12 +000016#include "GrTexture.h"
Brian Salomonc67c31c2018-12-06 10:00:03 -050017#include "GrTexturePriv.h"
18#include "SkAutoPixmapStorage.h"
Brian Osman48c99192017-06-02 08:45:06 -040019#include "SkMipMap.h"
Brian Salomon614c1a82018-12-19 15:42:06 -050020#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000021#include "Test.h"
bsalomon@google.com686bcb82013-04-09 15:04:12 +000022
bsalomona2c23232014-11-25 07:41:12 -080023// Tests that GrSurface::asTexture(), GrSurface::asRenderTarget(), and static upcasting of texture
24// and render targets to GrSurface all work as expected.
bsalomon758586c2016-04-06 14:02:39 -070025DEF_GPUTEST_FOR_NULLGL_CONTEXT(GrSurface, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070026 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -050027 auto resourceProvider = context->priv().resourceProvider();
28 GrGpu* gpu = context->priv().getGpu();
Robert Phillips6be756b2018-01-16 15:07:54 -050029
kkinnunen15302832015-12-01 04:35:26 -080030 GrSurfaceDesc desc;
kkinnunen15302832015-12-01 04:35:26 -080031 desc.fFlags = kRenderTarget_GrSurfaceFlag;
32 desc.fWidth = 256;
33 desc.fHeight = 256;
Robert Phillips16d8ec62017-07-27 16:16:25 -040034 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Salomonbdecacf2018-02-02 20:32:49 -050035 desc.fSampleCnt = 1;
Robert Phillips6be756b2018-01-16 15:07:54 -050036 sk_sp<GrSurface> texRT1 = resourceProvider->createTexture(desc, SkBudgeted::kNo);
bsalomona2c23232014-11-25 07:41:12 -080037
Robert Phillipse78b7252017-04-06 07:59:41 -040038 REPORTER_ASSERT(reporter, texRT1.get() == texRT1->asRenderTarget());
39 REPORTER_ASSERT(reporter, texRT1.get() == texRT1->asTexture());
kkinnunen15302832015-12-01 04:35:26 -080040 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
41 texRT1->asTexture());
42 REPORTER_ASSERT(reporter, texRT1->asRenderTarget() ==
43 static_cast<GrSurface*>(texRT1->asTexture()));
44 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
45 static_cast<GrSurface*>(texRT1->asTexture()));
bsalomona2c23232014-11-25 07:41:12 -080046
kkinnunen15302832015-12-01 04:35:26 -080047 desc.fFlags = kNone_GrSurfaceFlags;
Robert Phillips6be756b2018-01-16 15:07:54 -050048 sk_sp<GrTexture> tex1 = resourceProvider->createTexture(desc, SkBudgeted::kNo);
kkinnunen15302832015-12-01 04:35:26 -080049 REPORTER_ASSERT(reporter, nullptr == tex1->asRenderTarget());
Robert Phillipse78b7252017-04-06 07:59:41 -040050 REPORTER_ASSERT(reporter, tex1.get() == tex1->asTexture());
51 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(tex1.get()) == tex1->asTexture());
bsalomon@google.com686bcb82013-04-09 15:04:12 +000052
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050053 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Robert Phillips646f6372018-09-25 09:31:10 -040054 nullptr, 256, 256, GrColorType::kRGBA_8888, false, GrMipMapped::kNo);
bsalomon091f60c2015-11-10 11:54:56 -080055
Brian Salomonaa6ca0a2019-01-24 16:03:07 -050056 sk_sp<GrSurface> texRT2 = resourceProvider->wrapRenderableBackendTexture(
57 backendTex, 1, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +000058
bungeman6bd52842016-10-27 09:30:08 -070059 REPORTER_ASSERT(reporter, texRT2.get() == texRT2->asRenderTarget());
60 REPORTER_ASSERT(reporter, texRT2.get() == texRT2->asTexture());
kkinnunen15302832015-12-01 04:35:26 -080061 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
62 texRT2->asTexture());
63 REPORTER_ASSERT(reporter, texRT2->asRenderTarget() ==
64 static_cast<GrSurface*>(texRT2->asTexture()));
65 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
66 static_cast<GrSurface*>(texRT2->asTexture()));
bsalomon@google.com686bcb82013-04-09 15:04:12 +000067
Brian Salomon26102cb2018-03-09 09:33:19 -050068 gpu->deleteTestingOnlyBackendTexture(backendTex);
bsalomon@google.com686bcb82013-04-09 15:04:12 +000069}
70
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040071// This test checks that the isConfigTexturable and isConfigRenderable are
72// consistent with createTexture's result.
73DEF_GPUTEST_FOR_ALL_CONTEXTS(GrSurfaceRenderability, reporter, ctxInfo) {
74 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -050075 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
76 GrResourceProvider* resourceProvider = context->priv().resourceProvider();
77 const GrCaps* caps = context->priv().caps();
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040078
79 GrPixelConfig configs[] = {
80 kUnknown_GrPixelConfig,
81 kAlpha_8_GrPixelConfig,
Greg Danielef59d872017-11-17 16:47:21 -050082 kAlpha_8_as_Alpha_GrPixelConfig,
83 kAlpha_8_as_Red_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040084 kGray_8_GrPixelConfig,
Greg Daniel7af060a2017-12-05 16:27:11 -050085 kGray_8_as_Lum_GrPixelConfig,
86 kGray_8_as_Red_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040087 kRGB_565_GrPixelConfig,
88 kRGBA_4444_GrPixelConfig,
89 kRGBA_8888_GrPixelConfig,
Brian Salomon5fba7ad2018-03-22 10:01:16 -040090 kRGB_888_GrPixelConfig,
Jim Van Verth69e57852018-12-05 13:38:59 -050091 kRG_88_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040092 kBGRA_8888_GrPixelConfig,
93 kSRGBA_8888_GrPixelConfig,
94 kSBGRA_8888_GrPixelConfig,
Brian Osman10fc6fd2018-03-02 11:01:10 -050095 kRGBA_1010102_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040096 kRGBA_float_GrPixelConfig,
97 kRG_float_GrPixelConfig,
98 kAlpha_half_GrPixelConfig,
Greg Danielef59d872017-11-17 16:47:21 -050099 kAlpha_half_as_Red_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400100 kRGBA_half_GrPixelConfig,
Jim Van Verth1676cb92019-01-15 13:24:45 -0500101 kRGB_ETC1_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400102 };
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400103 GR_STATIC_ASSERT(kGrPixelConfigCnt == SK_ARRAY_COUNT(configs));
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400104
105 GrSurfaceDesc desc;
106 desc.fWidth = 64;
107 desc.fHeight = 64;
108
109 for (GrPixelConfig config : configs) {
110 for (GrSurfaceOrigin origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
111 desc.fFlags = kNone_GrSurfaceFlags;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400112 desc.fConfig = config;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500113 desc.fSampleCnt = 1;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400114
Robert Phillips3b3307f2017-05-24 07:44:02 -0400115 sk_sp<GrSurface> tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomon1c80e992018-01-29 09:50:47 -0500116 bool ict = caps->isConfigTexturable(desc.fConfig);
117 REPORTER_ASSERT(reporter, SkToBool(tex) == ict,
118 "config:%d, tex:%d, isConfigTexturable:%d", config, SkToBool(tex), ict);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400119
Greg Daniel4065d452018-11-16 15:43:41 -0500120 GrSRGBEncoded srgbEncoded = GrSRGBEncoded::kNo;
121 GrColorType colorType = GrPixelConfigToColorTypeAndEncoding(config, &srgbEncoded);
122 const GrBackendFormat format =
123 caps->getBackendFormatFromGrColorType(colorType, srgbEncoded);
124
Brian Salomon2a4f9832018-03-03 22:43:43 -0500125 sk_sp<GrTextureProxy> proxy =
Greg Daniel4065d452018-11-16 15:43:41 -0500126 proxyProvider->createMipMapProxy(format, desc, origin, SkBudgeted::kNo);
Brian Osman48c99192017-06-02 08:45:06 -0400127 REPORTER_ASSERT(reporter, SkToBool(proxy.get()) ==
128 (caps->isConfigTexturable(desc.fConfig) &&
Brian Salomon57111332018-02-05 15:55:54 -0500129 caps->mipMapSupport()));
Brian Osman48c99192017-06-02 08:45:06 -0400130
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400131 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillips3b3307f2017-05-24 07:44:02 -0400132 tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500133 bool isRenderable = caps->isConfigRenderable(config);
134 REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
135 "config:%d, tex:%d, isRenderable:%d", config, SkToBool(tex),
136 isRenderable);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400137
Brian Salomonbdecacf2018-02-02 20:32:49 -0500138 desc.fSampleCnt = 2;
Robert Phillips3b3307f2017-05-24 07:44:02 -0400139 tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500140 isRenderable = SkToBool(caps->getRenderTargetSampleCount(2, config));
141 REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
142 "config:%d, tex:%d, isRenderable:%d", config, SkToBool(tex),
143 isRenderable);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400144 }
145 }
146}
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400147
Brian Salomond17b4a62017-05-23 16:53:47 -0400148#include "GrDrawingManager.h"
149#include "GrSurfaceProxy.h"
150#include "GrTextureContext.h"
151
152DEF_GPUTEST_FOR_RENDERING_CONTEXTS(InitialTextureClear, reporter, context_info) {
153 static constexpr int kSize = 100;
154 GrSurfaceDesc desc;
155 desc.fWidth = desc.fHeight = kSize;
156 std::unique_ptr<uint32_t[]> data(new uint32_t[kSize * kSize]);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500157
Brian Salomond17b4a62017-05-23 16:53:47 -0400158 GrContext* context = context_info.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500159 const GrCaps* caps = context->priv().caps();
160 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500161
Brian Salomond17b4a62017-05-23 16:53:47 -0400162 for (int c = 0; c <= kLast_GrPixelConfig; ++c) {
163 desc.fConfig = static_cast<GrPixelConfig>(c);
Greg Daniel4065d452018-11-16 15:43:41 -0500164 if (!caps->isConfigTexturable(desc.fConfig)) {
Brian Salomond17b4a62017-05-23 16:53:47 -0400165 continue;
166 }
167 desc.fFlags = kPerformInitialClear_GrSurfaceFlag;
168 for (bool rt : {false, true}) {
Greg Daniel4065d452018-11-16 15:43:41 -0500169 if (rt && !caps->isConfigRenderable(desc.fConfig)) {
Brian Salomond17b4a62017-05-23 16:53:47 -0400170 continue;
171 }
172 desc.fFlags |= rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
Greg Daniel90f28ec2017-09-25 12:26:58 -0400173 for (GrSurfaceOrigin origin :
174 {kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin}) {
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500175 for (auto fit : { SkBackingFit::kApprox, SkBackingFit::kExact }) {
Greg Daniel90f28ec2017-09-25 12:26:58 -0400176 // Try directly creating the texture.
177 // Do this twice in an attempt to hit the cache on the second time through.
178 for (int i = 0; i < 2; ++i) {
Chris Daltond004e0b2018-09-27 09:28:03 -0600179 auto proxy = proxyProvider->testingOnly_createInstantiatedProxy(
Brian Salomon2a4f9832018-03-03 22:43:43 -0500180 desc, origin, fit, SkBudgeted::kYes);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500181 if (!proxy) {
Greg Daniel90f28ec2017-09-25 12:26:58 -0400182 continue;
183 }
Robert Phillips9da87e02019-02-04 13:26:26 -0500184 auto texCtx = context->priv().makeWrappedSurfaceContext(std::move(proxy));
Greg Daniel90f28ec2017-09-25 12:26:58 -0400185 SkImageInfo info = SkImageInfo::Make(
186 kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
187 memset(data.get(), 0xAB, kSize * kSize * sizeof(uint32_t));
188 if (texCtx->readPixels(info, data.get(), 0, 0, 0)) {
189 uint32_t cmp = GrPixelConfigIsOpaque(desc.fConfig) ? 0xFF000000 : 0;
190 for (int i = 0; i < kSize * kSize; ++i) {
191 if (cmp != data.get()[i]) {
192 ERRORF(reporter, "Failed on config %d", desc.fConfig);
193 break;
Brian Salomond17b4a62017-05-23 16:53:47 -0400194 }
195 }
Brian Salomond17b4a62017-05-23 16:53:47 -0400196 }
Greg Daniel90f28ec2017-09-25 12:26:58 -0400197 memset(data.get(), 0xBC, kSize * kSize * sizeof(uint32_t));
198 // Here we overwrite the texture so that the second time through we
199 // test against recycling without reclearing.
200 if (0 == i) {
201 texCtx->writePixels(info, data.get(), 0, 0, 0);
Greg Daniel52cb5fe2017-09-05 15:45:15 -0400202 }
Greg Daniel52cb5fe2017-09-05 15:45:15 -0400203 }
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500204 context->priv().testingOnly_purgeAllUnlockedResources();
Greg Daniel90f28ec2017-09-25 12:26:58 -0400205
Greg Daniel4065d452018-11-16 15:43:41 -0500206 GrSRGBEncoded srgbEncoded = GrSRGBEncoded::kNo;
207 GrColorType colorType = GrPixelConfigToColorTypeAndEncoding(desc.fConfig,
208 &srgbEncoded);
209 const GrBackendFormat format =
210 caps->getBackendFormatFromGrColorType(colorType, srgbEncoded);
211
Greg Daniel90f28ec2017-09-25 12:26:58 -0400212 // Try creating the texture as a deferred proxy.
213 for (int i = 0; i < 2; ++i) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500214 auto surfCtx = context->priv().makeDeferredSurfaceContext(
Greg Daniel4065d452018-11-16 15:43:41 -0500215 format, desc, origin, GrMipMapped::kNo, fit, SkBudgeted::kYes);
Greg Daniel90f28ec2017-09-25 12:26:58 -0400216 if (!surfCtx) {
217 continue;
218 }
219 SkImageInfo info = SkImageInfo::Make(
220 kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
221 memset(data.get(), 0xAB, kSize * kSize * sizeof(uint32_t));
222 if (surfCtx->readPixels(info, data.get(), 0, 0, 0)) {
223 uint32_t cmp = GrPixelConfigIsOpaque(desc.fConfig) ? 0xFF000000 : 0;
224 for (int i = 0; i < kSize * kSize; ++i) {
225 if (cmp != data.get()[i]) {
226 ERRORF(reporter, "Failed on config %d", desc.fConfig);
227 break;
228 }
229 }
230 }
231 // Here we overwrite the texture so that the second time through we
232 // test against recycling without reclearing.
233 if (0 == i) {
234 surfCtx->writePixels(info, data.get(), 0, 0, 0);
235 }
236 }
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500237 context->priv().testingOnly_purgeAllUnlockedResources();
Brian Salomond17b4a62017-05-23 16:53:47 -0400238 }
239 }
240 }
241 }
242}
Brian Salomonc67c31c2018-12-06 10:00:03 -0500243
244DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadOnlyTexture, reporter, context_info) {
245 auto fillPixels = [](const SkPixmap* p, const std::function<uint32_t(int x, int y)>& f) {
246 for (int y = 0; y < p->height(); ++y) {
247 for (int x = 0; x < p->width(); ++x) {
248 *p->writable_addr32(x, y) = f(x, y);
249 }
250 }
251 };
252
253 auto comparePixels = [](const SkPixmap& p1, const SkPixmap& p2, skiatest::Reporter* reporter) {
254 SkASSERT(p1.info() == p2.info());
255 for (int y = 0; y < p1.height(); ++y) {
256 for (int x = 0; x < p1.width(); ++x) {
257 REPORTER_ASSERT(reporter, p1.getColor(x, y) == p2.getColor(x, y));
258 if (p1.getColor(x, y) != p2.getColor(x, y)) {
259 return;
260 }
261 }
262 }
263 };
264
265 static constexpr int kSize = 100;
266 SkAutoPixmapStorage pixels;
267 pixels.alloc(SkImageInfo::Make(kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType));
Brian Osman50ea3c02019-02-04 10:01:53 -0500268 fillPixels(&pixels, [](int x, int y) {
269 return (0xFFU << 24) | (x << 16) | (y << 8) | uint8_t((x * y) & 0xFF);
270 });
Brian Salomonc67c31c2018-12-06 10:00:03 -0500271
272 GrContext* context = context_info.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500273 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Brian Salomonc67c31c2018-12-06 10:00:03 -0500274
275 // We test both kRW in addition to kRead mostly to ensure that the calls are structured such
276 // that they'd succeed if the texture wasn't kRead. We want to be sure we're failing with
277 // kRead for the right reason.
278 for (auto ioType : {kRead_GrIOType, kRW_GrIOType}) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500279 auto backendTex = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500280 pixels.addr(), kSize, kSize, kRGBA_8888_SkColorType, true, GrMipMapped::kNo);
281 auto proxy = proxyProvider->wrapBackendTexture(backendTex, kTopLeft_GrSurfaceOrigin,
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500282 kBorrow_GrWrapOwnership,
283 GrWrapCacheable::kNo, ioType);
Robert Phillips9da87e02019-02-04 13:26:26 -0500284 auto surfContext = context->priv().makeWrappedSurfaceContext(proxy);
Brian Salomonc67c31c2018-12-06 10:00:03 -0500285
286 // Read pixels should work with a read-only texture.
287 SkAutoPixmapStorage read;
288 read.alloc(pixels.info());
289 auto readResult = surfContext->readPixels(pixels.info(), read.writable_addr(), 0, 0, 0);
290 REPORTER_ASSERT(reporter, readResult);
291 if (readResult) {
292 comparePixels(pixels, read, reporter);
293 }
294
295 // Write pixels should not work with a read-only texture.
296 SkAutoPixmapStorage write;
297 write.alloc(pixels.info());
298 fillPixels(&write, [&pixels](int x, int y) { return ~*pixels.addr32(); });
299 auto writeResult = surfContext->writePixels(pixels.info(), pixels.addr(), 0, 0, 0);
300 REPORTER_ASSERT(reporter, writeResult == (ioType == kRW_GrIOType));
301 // Try the low level write.
302 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500303 auto gpuWriteResult = context->priv().getGpu()->writePixels(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500304 proxy->peekTexture(), 0, 0, kSize, kSize, GrColorType::kRGBA_8888, write.addr32(),
305 0);
306 REPORTER_ASSERT(reporter, gpuWriteResult == (ioType == kRW_GrIOType));
307
308 // Copies should not work with a read-only texture
309 auto copySrc = proxyProvider->createTextureProxy(
310 SkImage::MakeFromRaster(write, nullptr, nullptr), kNone_GrSurfaceFlags, 1,
311 SkBudgeted::kYes, SkBackingFit::kExact);
312 REPORTER_ASSERT(reporter, copySrc);
313 auto copyResult = surfContext->copy(copySrc.get());
314 REPORTER_ASSERT(reporter, copyResult == (ioType == kRW_GrIOType));
315 // Try the low level copy.
316 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500317 auto gpuCopyResult = context->priv().getGpu()->copySurface(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500318 proxy->peekTexture(), kTopLeft_GrSurfaceOrigin, copySrc->peekTexture(),
319 kTopLeft_GrSurfaceOrigin, SkIRect::MakeWH(kSize, kSize), {0, 0});
320 REPORTER_ASSERT(reporter, gpuCopyResult == (ioType == kRW_GrIOType));
321
322 // Mip regen should not work with a read only texture.
Robert Phillips9da87e02019-02-04 13:26:26 -0500323 if (context->priv().caps()->mipMapSupport()) {
324 backendTex = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500325 nullptr, kSize, kSize, kRGBA_8888_SkColorType, true, GrMipMapped::kYes);
326 proxy = proxyProvider->wrapBackendTexture(backendTex, kTopLeft_GrSurfaceOrigin,
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500327 kBorrow_GrWrapOwnership, GrWrapCacheable::kNo,
328 ioType);
Brian Salomonc67c31c2018-12-06 10:00:03 -0500329 context->flush();
330 proxy->peekTexture()->texturePriv().markMipMapsDirty(); // avoids assert in GrGpu.
331 auto regenResult =
Robert Phillips9da87e02019-02-04 13:26:26 -0500332 context->priv().getGpu()->regenerateMipMapLevels(proxy->peekTexture());
Brian Salomonc67c31c2018-12-06 10:00:03 -0500333 REPORTER_ASSERT(reporter, regenResult == (ioType == kRW_GrIOType));
334 }
335 }
336}
Brian Salomon614c1a82018-12-19 15:42:06 -0500337
338DEF_GPUTEST(TextureIdleProcTest, reporter, options) {
Brian Salomon614c1a82018-12-19 15:42:06 -0500339 static const int kS = 10;
340
341 // Helper to delete a backend texture in a GrTexture's release proc.
342 static const auto installBackendTextureReleaseProc = [](GrTexture* texture) {
343 auto backendTexture = texture->getBackendTexture();
344 auto context = texture->getContext();
345 struct ReleaseContext {
346 GrContext* fContext;
347 GrBackendTexture fBackendTexture;
348 };
349 auto release = [](void* rc) {
350 auto releaseContext = static_cast<ReleaseContext*>(rc);
351 if (!releaseContext->fContext->abandoned()) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500352 if (auto gpu = releaseContext->fContext->priv().getGpu()) {
Brian Salomon614c1a82018-12-19 15:42:06 -0500353 gpu->deleteTestingOnlyBackendTexture(releaseContext->fBackendTexture);
354 }
355 }
356 delete releaseContext;
357 };
358 texture->setRelease(sk_make_sp<GrReleaseProcHelper>(
359 release, new ReleaseContext{context, backendTexture}));
360 };
361
362 // Various ways of making textures.
363 auto makeWrapped = [](GrContext* context) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500364 auto backendTexture = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomon614c1a82018-12-19 15:42:06 -0500365 nullptr, kS, kS, GrColorType::kRGBA_8888, false, GrMipMapped::kNo);
Robert Phillips9da87e02019-02-04 13:26:26 -0500366 auto texture = context->priv().resourceProvider()->wrapBackendTexture(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500367 backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo, kRW_GrIOType);
Brian Salomon614c1a82018-12-19 15:42:06 -0500368 installBackendTextureReleaseProc(texture.get());
369 return texture;
370 };
371
372 auto makeWrappedRenderable = [](GrContext* context) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500373 auto backendTexture = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomon614c1a82018-12-19 15:42:06 -0500374 nullptr, kS, kS, GrColorType::kRGBA_8888, true, GrMipMapped::kNo);
Robert Phillips9da87e02019-02-04 13:26:26 -0500375 auto texture = context->priv().resourceProvider()->wrapRenderableBackendTexture(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500376 backendTexture, 1, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo);
Brian Salomon614c1a82018-12-19 15:42:06 -0500377 installBackendTextureReleaseProc(texture.get());
378 return texture;
379 };
380
381 auto makeNormal = [](GrContext* context) {
382 GrSurfaceDesc desc;
383 desc.fConfig = kRGBA_8888_GrPixelConfig;
384 desc.fWidth = desc.fHeight = kS;
Robert Phillips9da87e02019-02-04 13:26:26 -0500385 return context->priv().resourceProvider()->createTexture(desc, SkBudgeted::kNo);
Brian Salomon614c1a82018-12-19 15:42:06 -0500386 };
387
388 auto makeRenderable = [](GrContext* context) {
389 GrSurfaceDesc desc;
390 desc.fFlags = kRenderTarget_GrSurfaceFlag;
391 desc.fConfig = kRGBA_8888_GrPixelConfig;
392 desc.fWidth = desc.fHeight = kS;
Robert Phillips9da87e02019-02-04 13:26:26 -0500393 return context->priv().resourceProvider()->createTexture(desc, SkBudgeted::kNo);
Brian Salomon614c1a82018-12-19 15:42:06 -0500394 };
395
396 std::function<sk_sp<GrTexture>(GrContext*)> makers[] = {makeWrapped, makeWrappedRenderable,
397 makeNormal, makeRenderable};
398
399 // Add a unique key, or not.
400 auto addKey = [](GrTexture* texture) {
401 static uint32_t gN = 0;
402 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
403 GrUniqueKey key;
404 GrUniqueKey::Builder builder(&key, kDomain, 1);
405 builder[0] = gN++;
406 builder.finish();
407 texture->resourcePriv().setUniqueKey(key);
408 };
409 auto dontAddKey = [](GrTexture* texture) {};
410 std::function<void(GrTexture*)> keyAdders[] = {addKey, dontAddKey};
411
412 for (const auto& m : makers) {
413 for (const auto& keyAdder : keyAdders) {
414 for (int type = 0; type < sk_gpu_test::GrContextFactory::kContextTypeCnt; ++type) {
415 sk_gpu_test::GrContextFactory factory;
416 auto contextType = static_cast<sk_gpu_test::GrContextFactory::ContextType>(type);
Brian Salomon9bc76d92019-01-24 12:18:33 -0500417 GrContext* context = factory.get(contextType);
Brian Salomon614c1a82018-12-19 15:42:06 -0500418 if (!context) {
419 continue;
420 }
421
422 // The callback we add simply adds an integer to a set.
423 std::set<int> idleIDs;
424 struct Context {
425 std::set<int>* fIdleIDs;
426 int fNum;
427 };
428 auto proc = [](void* context) {
429 static_cast<Context*>(context)->fIdleIDs->insert(
430 static_cast<Context*>(context)->fNum);
431 delete static_cast<Context*>(context);
432 };
433
434 // Makes a texture, possibly adds a key, and sets the callback.
435 auto make = [&m, &keyAdder, &proc, &idleIDs](GrContext* context, int num) {
436 sk_sp<GrTexture> texture = m(context);
437 texture->setIdleProc(proc, new Context{&idleIDs, num});
438 keyAdder(texture.get());
439 return texture;
440 };
441
442 auto texture = make(context, 1);
443 REPORTER_ASSERT(reporter, idleIDs.find(1) == idleIDs.end());
444 bool isRT = SkToBool(texture->asRenderTarget());
445 auto backendFormat = texture->backendFormat();
446 texture.reset();
447 REPORTER_ASSERT(reporter, idleIDs.find(1) != idleIDs.end());
448
449 texture = make(context, 2);
450 SkImageInfo info =
451 SkImageInfo::Make(kS, kS, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
452 auto rt = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0, nullptr);
453 auto rtc = rt->getCanvas()->internal_private_accessTopLayerRenderTargetContext();
454 auto singleUseLazyCB = [&texture](GrResourceProvider* rp) {
455 return rp ? std::move(texture) : nullptr;
456 };
457 GrSurfaceDesc desc;
458 desc.fWidth = desc.fHeight = kS;
459 desc.fConfig = kRGBA_8888_GrPixelConfig;
460 if (isRT) {
461 desc.fFlags = kRenderTarget_GrSurfaceFlag;
462 }
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500463 SkBudgeted budgeted;
464 if (texture->resourcePriv().budgetedType() == GrBudgetedType::kBudgeted) {
465 budgeted = SkBudgeted::kYes;
466 } else {
467 budgeted = SkBudgeted::kNo;
468 }
Robert Phillips9da87e02019-02-04 13:26:26 -0500469 auto proxy = context->priv().proxyProvider()->createLazyProxy(
Brian Salomon614c1a82018-12-19 15:42:06 -0500470 singleUseLazyCB, backendFormat, desc,
471 GrSurfaceOrigin::kTopLeft_GrSurfaceOrigin, GrMipMapped::kNo,
472 GrInternalSurfaceFlags ::kNone, SkBackingFit::kExact, budgeted,
473 GrSurfaceProxy::LazyInstantiationType::kSingleUse);
474 rtc->drawTexture(GrNoClip(), proxy, GrSamplerState::Filter::kNearest, SkPMColor4f(),
475 SkRect::MakeWH(kS, kS), SkRect::MakeWH(kS, kS),
476 GrQuadAAFlags::kNone, SkCanvas::kFast_SrcRectConstraint,
477 SkMatrix::I(), nullptr);
478 // We still have the proxy, which should remain instantiated, thereby keeping the
479 // texture not purgeable.
480 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
481 context->flush();
482 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
Robert Phillips9da87e02019-02-04 13:26:26 -0500483 context->priv().getGpu()->testingOnly_flushGpuAndSync();
Brian Salomon614c1a82018-12-19 15:42:06 -0500484 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
485
486 // This time we move the proxy into the draw.
487 rtc->drawTexture(GrNoClip(), std::move(proxy), GrSamplerState::Filter::kNearest,
488 SkPMColor4f(), SkRect::MakeWH(kS, kS), SkRect::MakeWH(kS, kS),
489 GrQuadAAFlags::kNone, SkCanvas::kFast_SrcRectConstraint,
490 SkMatrix::I(), nullptr);
491 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
492 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500493 context->priv().getGpu()->testingOnly_flushGpuAndSync();
Brian Salomon614c1a82018-12-19 15:42:06 -0500494 // Now that the draw is fully consumed by the GPU, the texture should be idle.
495 REPORTER_ASSERT(reporter, idleIDs.find(2) != idleIDs.end());
496
497 // Make a proxy that should deinstantiate even if we keep a ref on it.
498 auto deinstantiateLazyCB = [&make, &context](GrResourceProvider* rp) {
499 return rp ? make(context, 3) : nullptr;
500 };
Robert Phillips9da87e02019-02-04 13:26:26 -0500501 proxy = context->priv().proxyProvider()->createLazyProxy(
Brian Salomon614c1a82018-12-19 15:42:06 -0500502 deinstantiateLazyCB, backendFormat, desc,
503 GrSurfaceOrigin::kTopLeft_GrSurfaceOrigin, GrMipMapped::kNo,
504 GrInternalSurfaceFlags ::kNone, SkBackingFit::kExact, budgeted,
505 GrSurfaceProxy::LazyInstantiationType::kDeinstantiate);
506 rtc->drawTexture(GrNoClip(), std::move(proxy), GrSamplerState::Filter::kNearest,
507 SkPMColor4f(), SkRect::MakeWH(kS, kS), SkRect::MakeWH(kS, kS),
508 GrQuadAAFlags::kNone, SkCanvas::kFast_SrcRectConstraint,
509 SkMatrix::I(), nullptr);
510 // At this point the proxy shouldn't even be instantiated, there is no texture with
511 // id 3.
512 REPORTER_ASSERT(reporter, idleIDs.find(3) == idleIDs.end());
513 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500514 context->priv().getGpu()->testingOnly_flushGpuAndSync();
Brian Salomon614c1a82018-12-19 15:42:06 -0500515 // Now that the draw is fully consumed, we should have deinstantiated the proxy and
516 // the texture it made should be idle.
517 REPORTER_ASSERT(reporter, idleIDs.find(3) != idleIDs.end());
518
Brian Salomon9bc76d92019-01-24 12:18:33 -0500519 // Make sure we make the call during various shutdown scenarios where the texture
520 // might persist after context is destroyed, abandoned, etc. We test three
521 // variations of each scenario. One where the texture is just created. Another,
522 // where the texture has been used in a draw and then the context is flushed. And
523 // one where the the texture was drawn but the context is not flushed.
524 // In each scenario we test holding a ref beyond the context shutdown and not.
Brian Salomon614c1a82018-12-19 15:42:06 -0500525
Brian Salomon9bc76d92019-01-24 12:18:33 -0500526 // These tests are difficult to get working with Vulkan. See http://skbug.com/8705
527 // and http://skbug.com/8275
528 GrBackendApi api = sk_gpu_test::GrContextFactory::ContextTypeBackend(contextType);
529 if (api == GrBackendApi::kVulkan) {
530 continue;
531 }
532 int id = 4;
533 enum class DrawType {
534 kNoDraw,
535 kDraw,
536 kDrawAndFlush,
537 };
538 for (auto drawType :
539 {DrawType::kNoDraw, DrawType::kDraw, DrawType::kDrawAndFlush}) {
540 for (bool unrefFirst : {false, true}) {
541 auto possiblyDrawAndFlush = [&context, &texture, drawType, unrefFirst] {
542 if (drawType == DrawType::kNoDraw) {
543 return;
544 }
545 SkImageInfo info = SkImageInfo::Make(kS, kS, kRGBA_8888_SkColorType,
546 kPremul_SkAlphaType);
547 auto rt = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0,
548 nullptr);
Robert Phillips9da87e02019-02-04 13:26:26 -0500549 auto rtc = rt->getCanvas()
Brian Salomon9bc76d92019-01-24 12:18:33 -0500550 ->internal_private_accessTopLayerRenderTargetContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500551 auto proxy = context->priv().proxyProvider()->testingOnly_createWrapped(
Brian Salomon9bc76d92019-01-24 12:18:33 -0500552 texture, kTopLeft_GrSurfaceOrigin);
553 rtc->drawTexture(GrNoClip(), proxy, GrSamplerState::Filter::kNearest,
554 SkPMColor4f(), SkRect::MakeWH(kS, kS),
555 SkRect::MakeWH(kS, kS), GrQuadAAFlags::kNone,
556 SkCanvas::kFast_SrcRectConstraint, SkMatrix::I(),
557 nullptr);
558 if (drawType == DrawType::kDrawAndFlush) {
559 context->flush();
560 }
561 if (unrefFirst) {
562 texture.reset();
563 }
564 };
565 texture = make(context, id);
566 possiblyDrawAndFlush();
567 context->abandonContext();
568 texture.reset();
569 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
570 factory.destroyContexts();
571 context = factory.get(contextType);
572 ++id;
Brian Salomon614c1a82018-12-19 15:42:06 -0500573
Brian Salomon9bc76d92019-01-24 12:18:33 -0500574 // Similar to previous, but reset the texture after the context was
575 // abandoned and then destroyed.
576 texture = make(context, id);
577 possiblyDrawAndFlush();
578 context->abandonContext();
579 factory.destroyContexts();
580 texture.reset();
581 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
582 context = factory.get(contextType);
583 id++;
584
585 texture = make(context, id);
586 possiblyDrawAndFlush();
587 factory.destroyContexts();
588 texture.reset();
589 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
590 context = factory.get(contextType);
591 id++;
592
593 texture = make(context, id);
594 possiblyDrawAndFlush();
595 factory.releaseResourcesAndAbandonContexts();
596 texture.reset();
597 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
598 context = factory.get(contextType);
599 id++;
600 }
601 }
Brian Salomon614c1a82018-12-19 15:42:06 -0500602 }
603 }
604 }
605}