blob: 4c747f0420c637f668324b1146fd1455fd015a2f [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,
Greg Danielf259b8b2019-02-14 09:03:43 -050091 kRGB_888X_GrPixelConfig,
Jim Van Verth69e57852018-12-05 13:38:59 -050092 kRG_88_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040093 kBGRA_8888_GrPixelConfig,
94 kSRGBA_8888_GrPixelConfig,
95 kSBGRA_8888_GrPixelConfig,
Brian Osman10fc6fd2018-03-02 11:01:10 -050096 kRGBA_1010102_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040097 kRGBA_float_GrPixelConfig,
98 kRG_float_GrPixelConfig,
99 kAlpha_half_GrPixelConfig,
Greg Danielef59d872017-11-17 16:47:21 -0500100 kAlpha_half_as_Red_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400101 kRGBA_half_GrPixelConfig,
Jim Van Verth1676cb92019-01-15 13:24:45 -0500102 kRGB_ETC1_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400103 };
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400104 GR_STATIC_ASSERT(kGrPixelConfigCnt == SK_ARRAY_COUNT(configs));
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400105
106 GrSurfaceDesc desc;
107 desc.fWidth = 64;
108 desc.fHeight = 64;
109
110 for (GrPixelConfig config : configs) {
111 for (GrSurfaceOrigin origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
112 desc.fFlags = kNone_GrSurfaceFlags;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400113 desc.fConfig = config;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500114 desc.fSampleCnt = 1;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400115
Robert Phillips3b3307f2017-05-24 07:44:02 -0400116 sk_sp<GrSurface> tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomon1c80e992018-01-29 09:50:47 -0500117 bool ict = caps->isConfigTexturable(desc.fConfig);
118 REPORTER_ASSERT(reporter, SkToBool(tex) == ict,
119 "config:%d, tex:%d, isConfigTexturable:%d", config, SkToBool(tex), ict);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400120
Greg Daniel4065d452018-11-16 15:43:41 -0500121 GrSRGBEncoded srgbEncoded = GrSRGBEncoded::kNo;
122 GrColorType colorType = GrPixelConfigToColorTypeAndEncoding(config, &srgbEncoded);
123 const GrBackendFormat format =
124 caps->getBackendFormatFromGrColorType(colorType, srgbEncoded);
125
Brian Salomon2a4f9832018-03-03 22:43:43 -0500126 sk_sp<GrTextureProxy> proxy =
Greg Daniel4065d452018-11-16 15:43:41 -0500127 proxyProvider->createMipMapProxy(format, desc, origin, SkBudgeted::kNo);
Brian Osman48c99192017-06-02 08:45:06 -0400128 REPORTER_ASSERT(reporter, SkToBool(proxy.get()) ==
129 (caps->isConfigTexturable(desc.fConfig) &&
Brian Salomon57111332018-02-05 15:55:54 -0500130 caps->mipMapSupport()));
Brian Osman48c99192017-06-02 08:45:06 -0400131
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400132 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillips3b3307f2017-05-24 07:44:02 -0400133 tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500134 bool isRenderable = caps->isConfigRenderable(config);
135 REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
136 "config:%d, tex:%d, isRenderable:%d", config, SkToBool(tex),
137 isRenderable);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400138
Brian Salomonbdecacf2018-02-02 20:32:49 -0500139 desc.fSampleCnt = 2;
Robert Phillips3b3307f2017-05-24 07:44:02 -0400140 tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500141 isRenderable = SkToBool(caps->getRenderTargetSampleCount(2, config));
142 REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
143 "config:%d, tex:%d, isRenderable:%d", config, SkToBool(tex),
144 isRenderable);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400145 }
146 }
147}
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400148
Brian Salomond17b4a62017-05-23 16:53:47 -0400149#include "GrDrawingManager.h"
150#include "GrSurfaceProxy.h"
151#include "GrTextureContext.h"
152
153DEF_GPUTEST_FOR_RENDERING_CONTEXTS(InitialTextureClear, reporter, context_info) {
154 static constexpr int kSize = 100;
155 GrSurfaceDesc desc;
156 desc.fWidth = desc.fHeight = kSize;
157 std::unique_ptr<uint32_t[]> data(new uint32_t[kSize * kSize]);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500158
Brian Salomond17b4a62017-05-23 16:53:47 -0400159 GrContext* context = context_info.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500160 const GrCaps* caps = context->priv().caps();
161 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500162
Brian Salomond17b4a62017-05-23 16:53:47 -0400163 for (int c = 0; c <= kLast_GrPixelConfig; ++c) {
164 desc.fConfig = static_cast<GrPixelConfig>(c);
Greg Daniel4065d452018-11-16 15:43:41 -0500165 if (!caps->isConfigTexturable(desc.fConfig)) {
Brian Salomond17b4a62017-05-23 16:53:47 -0400166 continue;
167 }
168 desc.fFlags = kPerformInitialClear_GrSurfaceFlag;
169 for (bool rt : {false, true}) {
Greg Daniel4065d452018-11-16 15:43:41 -0500170 if (rt && !caps->isConfigRenderable(desc.fConfig)) {
Brian Salomond17b4a62017-05-23 16:53:47 -0400171 continue;
172 }
173 desc.fFlags |= rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
Greg Daniel90f28ec2017-09-25 12:26:58 -0400174 for (GrSurfaceOrigin origin :
175 {kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin}) {
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500176 for (auto fit : { SkBackingFit::kApprox, SkBackingFit::kExact }) {
Greg Daniel90f28ec2017-09-25 12:26:58 -0400177 // Try directly creating the texture.
178 // Do this twice in an attempt to hit the cache on the second time through.
179 for (int i = 0; i < 2; ++i) {
Chris Daltond004e0b2018-09-27 09:28:03 -0600180 auto proxy = proxyProvider->testingOnly_createInstantiatedProxy(
Brian Salomon2a4f9832018-03-03 22:43:43 -0500181 desc, origin, fit, SkBudgeted::kYes);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500182 if (!proxy) {
Greg Daniel90f28ec2017-09-25 12:26:58 -0400183 continue;
184 }
Robert Phillips9da87e02019-02-04 13:26:26 -0500185 auto texCtx = context->priv().makeWrappedSurfaceContext(std::move(proxy));
Greg Daniel90f28ec2017-09-25 12:26:58 -0400186 SkImageInfo info = SkImageInfo::Make(
187 kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
188 memset(data.get(), 0xAB, kSize * kSize * sizeof(uint32_t));
189 if (texCtx->readPixels(info, data.get(), 0, 0, 0)) {
190 uint32_t cmp = GrPixelConfigIsOpaque(desc.fConfig) ? 0xFF000000 : 0;
191 for (int i = 0; i < kSize * kSize; ++i) {
192 if (cmp != data.get()[i]) {
193 ERRORF(reporter, "Failed on config %d", desc.fConfig);
194 break;
Brian Salomond17b4a62017-05-23 16:53:47 -0400195 }
196 }
Brian Salomond17b4a62017-05-23 16:53:47 -0400197 }
Greg Daniel90f28ec2017-09-25 12:26:58 -0400198 memset(data.get(), 0xBC, kSize * kSize * sizeof(uint32_t));
199 // Here we overwrite the texture so that the second time through we
200 // test against recycling without reclearing.
201 if (0 == i) {
202 texCtx->writePixels(info, data.get(), 0, 0, 0);
Greg Daniel52cb5fe2017-09-05 15:45:15 -0400203 }
Greg Daniel52cb5fe2017-09-05 15:45:15 -0400204 }
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500205 context->priv().testingOnly_purgeAllUnlockedResources();
Greg Daniel90f28ec2017-09-25 12:26:58 -0400206
Greg Daniel4065d452018-11-16 15:43:41 -0500207 GrSRGBEncoded srgbEncoded = GrSRGBEncoded::kNo;
208 GrColorType colorType = GrPixelConfigToColorTypeAndEncoding(desc.fConfig,
209 &srgbEncoded);
210 const GrBackendFormat format =
211 caps->getBackendFormatFromGrColorType(colorType, srgbEncoded);
212
Greg Daniel90f28ec2017-09-25 12:26:58 -0400213 // Try creating the texture as a deferred proxy.
214 for (int i = 0; i < 2; ++i) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500215 auto surfCtx = context->priv().makeDeferredSurfaceContext(
Greg Daniel4065d452018-11-16 15:43:41 -0500216 format, desc, origin, GrMipMapped::kNo, fit, SkBudgeted::kYes);
Greg Daniel90f28ec2017-09-25 12:26:58 -0400217 if (!surfCtx) {
218 continue;
219 }
220 SkImageInfo info = SkImageInfo::Make(
221 kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
222 memset(data.get(), 0xAB, kSize * kSize * sizeof(uint32_t));
223 if (surfCtx->readPixels(info, data.get(), 0, 0, 0)) {
224 uint32_t cmp = GrPixelConfigIsOpaque(desc.fConfig) ? 0xFF000000 : 0;
225 for (int i = 0; i < kSize * kSize; ++i) {
226 if (cmp != data.get()[i]) {
227 ERRORF(reporter, "Failed on config %d", desc.fConfig);
228 break;
229 }
230 }
231 }
232 // Here we overwrite the texture so that the second time through we
233 // test against recycling without reclearing.
234 if (0 == i) {
235 surfCtx->writePixels(info, data.get(), 0, 0, 0);
236 }
237 }
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500238 context->priv().testingOnly_purgeAllUnlockedResources();
Brian Salomond17b4a62017-05-23 16:53:47 -0400239 }
240 }
241 }
242 }
243}
Brian Salomonc67c31c2018-12-06 10:00:03 -0500244
245DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadOnlyTexture, reporter, context_info) {
246 auto fillPixels = [](const SkPixmap* p, const std::function<uint32_t(int x, int y)>& f) {
247 for (int y = 0; y < p->height(); ++y) {
248 for (int x = 0; x < p->width(); ++x) {
249 *p->writable_addr32(x, y) = f(x, y);
250 }
251 }
252 };
253
254 auto comparePixels = [](const SkPixmap& p1, const SkPixmap& p2, skiatest::Reporter* reporter) {
255 SkASSERT(p1.info() == p2.info());
256 for (int y = 0; y < p1.height(); ++y) {
257 for (int x = 0; x < p1.width(); ++x) {
258 REPORTER_ASSERT(reporter, p1.getColor(x, y) == p2.getColor(x, y));
259 if (p1.getColor(x, y) != p2.getColor(x, y)) {
260 return;
261 }
262 }
263 }
264 };
265
266 static constexpr int kSize = 100;
267 SkAutoPixmapStorage pixels;
268 pixels.alloc(SkImageInfo::Make(kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType));
Brian Osman50ea3c02019-02-04 10:01:53 -0500269 fillPixels(&pixels, [](int x, int y) {
270 return (0xFFU << 24) | (x << 16) | (y << 8) | uint8_t((x * y) & 0xFF);
271 });
Brian Salomonc67c31c2018-12-06 10:00:03 -0500272
273 GrContext* context = context_info.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500274 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Brian Salomonc67c31c2018-12-06 10:00:03 -0500275
276 // We test both kRW in addition to kRead mostly to ensure that the calls are structured such
277 // that they'd succeed if the texture wasn't kRead. We want to be sure we're failing with
278 // kRead for the right reason.
279 for (auto ioType : {kRead_GrIOType, kRW_GrIOType}) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500280 auto backendTex = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500281 pixels.addr(), kSize, kSize, kRGBA_8888_SkColorType, true, GrMipMapped::kNo);
282 auto proxy = proxyProvider->wrapBackendTexture(backendTex, kTopLeft_GrSurfaceOrigin,
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500283 kBorrow_GrWrapOwnership,
284 GrWrapCacheable::kNo, ioType);
Robert Phillips9da87e02019-02-04 13:26:26 -0500285 auto surfContext = context->priv().makeWrappedSurfaceContext(proxy);
Brian Salomonc67c31c2018-12-06 10:00:03 -0500286
287 // Read pixels should work with a read-only texture.
288 SkAutoPixmapStorage read;
289 read.alloc(pixels.info());
290 auto readResult = surfContext->readPixels(pixels.info(), read.writable_addr(), 0, 0, 0);
291 REPORTER_ASSERT(reporter, readResult);
292 if (readResult) {
293 comparePixels(pixels, read, reporter);
294 }
295
296 // Write pixels should not work with a read-only texture.
297 SkAutoPixmapStorage write;
298 write.alloc(pixels.info());
299 fillPixels(&write, [&pixels](int x, int y) { return ~*pixels.addr32(); });
300 auto writeResult = surfContext->writePixels(pixels.info(), pixels.addr(), 0, 0, 0);
301 REPORTER_ASSERT(reporter, writeResult == (ioType == kRW_GrIOType));
302 // Try the low level write.
303 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500304 auto gpuWriteResult = context->priv().getGpu()->writePixels(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500305 proxy->peekTexture(), 0, 0, kSize, kSize, GrColorType::kRGBA_8888, write.addr32(),
306 0);
307 REPORTER_ASSERT(reporter, gpuWriteResult == (ioType == kRW_GrIOType));
308
309 // Copies should not work with a read-only texture
310 auto copySrc = proxyProvider->createTextureProxy(
311 SkImage::MakeFromRaster(write, nullptr, nullptr), kNone_GrSurfaceFlags, 1,
312 SkBudgeted::kYes, SkBackingFit::kExact);
313 REPORTER_ASSERT(reporter, copySrc);
314 auto copyResult = surfContext->copy(copySrc.get());
315 REPORTER_ASSERT(reporter, copyResult == (ioType == kRW_GrIOType));
316 // Try the low level copy.
317 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500318 auto gpuCopyResult = context->priv().getGpu()->copySurface(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500319 proxy->peekTexture(), kTopLeft_GrSurfaceOrigin, copySrc->peekTexture(),
320 kTopLeft_GrSurfaceOrigin, SkIRect::MakeWH(kSize, kSize), {0, 0});
321 REPORTER_ASSERT(reporter, gpuCopyResult == (ioType == kRW_GrIOType));
322
323 // Mip regen should not work with a read only texture.
Robert Phillips9da87e02019-02-04 13:26:26 -0500324 if (context->priv().caps()->mipMapSupport()) {
325 backendTex = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomonc67c31c2018-12-06 10:00:03 -0500326 nullptr, kSize, kSize, kRGBA_8888_SkColorType, true, GrMipMapped::kYes);
327 proxy = proxyProvider->wrapBackendTexture(backendTex, kTopLeft_GrSurfaceOrigin,
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500328 kBorrow_GrWrapOwnership, GrWrapCacheable::kNo,
329 ioType);
Brian Salomonc67c31c2018-12-06 10:00:03 -0500330 context->flush();
331 proxy->peekTexture()->texturePriv().markMipMapsDirty(); // avoids assert in GrGpu.
332 auto regenResult =
Robert Phillips9da87e02019-02-04 13:26:26 -0500333 context->priv().getGpu()->regenerateMipMapLevels(proxy->peekTexture());
Brian Salomonc67c31c2018-12-06 10:00:03 -0500334 REPORTER_ASSERT(reporter, regenResult == (ioType == kRW_GrIOType));
335 }
336 }
337}
Brian Salomon614c1a82018-12-19 15:42:06 -0500338
339DEF_GPUTEST(TextureIdleProcTest, reporter, options) {
Brian Salomon614c1a82018-12-19 15:42:06 -0500340 static const int kS = 10;
341
342 // Helper to delete a backend texture in a GrTexture's release proc.
343 static const auto installBackendTextureReleaseProc = [](GrTexture* texture) {
344 auto backendTexture = texture->getBackendTexture();
345 auto context = texture->getContext();
346 struct ReleaseContext {
347 GrContext* fContext;
348 GrBackendTexture fBackendTexture;
349 };
350 auto release = [](void* rc) {
351 auto releaseContext = static_cast<ReleaseContext*>(rc);
352 if (!releaseContext->fContext->abandoned()) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500353 if (auto gpu = releaseContext->fContext->priv().getGpu()) {
Brian Salomon614c1a82018-12-19 15:42:06 -0500354 gpu->deleteTestingOnlyBackendTexture(releaseContext->fBackendTexture);
355 }
356 }
357 delete releaseContext;
358 };
359 texture->setRelease(sk_make_sp<GrReleaseProcHelper>(
360 release, new ReleaseContext{context, backendTexture}));
361 };
362
363 // Various ways of making textures.
364 auto makeWrapped = [](GrContext* context) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500365 auto backendTexture = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomon614c1a82018-12-19 15:42:06 -0500366 nullptr, kS, kS, GrColorType::kRGBA_8888, false, GrMipMapped::kNo);
Robert Phillips9da87e02019-02-04 13:26:26 -0500367 auto texture = context->priv().resourceProvider()->wrapBackendTexture(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500368 backendTexture, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo, kRW_GrIOType);
Brian Salomon614c1a82018-12-19 15:42:06 -0500369 installBackendTextureReleaseProc(texture.get());
370 return texture;
371 };
372
373 auto makeWrappedRenderable = [](GrContext* context) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500374 auto backendTexture = context->priv().getGpu()->createTestingOnlyBackendTexture(
Brian Salomon614c1a82018-12-19 15:42:06 -0500375 nullptr, kS, kS, GrColorType::kRGBA_8888, true, GrMipMapped::kNo);
Robert Phillips9da87e02019-02-04 13:26:26 -0500376 auto texture = context->priv().resourceProvider()->wrapRenderableBackendTexture(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500377 backendTexture, 1, kBorrow_GrWrapOwnership, GrWrapCacheable::kNo);
Brian Salomon614c1a82018-12-19 15:42:06 -0500378 installBackendTextureReleaseProc(texture.get());
379 return texture;
380 };
381
382 auto makeNormal = [](GrContext* context) {
383 GrSurfaceDesc desc;
384 desc.fConfig = kRGBA_8888_GrPixelConfig;
385 desc.fWidth = desc.fHeight = kS;
Robert Phillips9da87e02019-02-04 13:26:26 -0500386 return context->priv().resourceProvider()->createTexture(desc, SkBudgeted::kNo);
Brian Salomon614c1a82018-12-19 15:42:06 -0500387 };
388
389 auto makeRenderable = [](GrContext* context) {
390 GrSurfaceDesc desc;
391 desc.fFlags = kRenderTarget_GrSurfaceFlag;
392 desc.fConfig = kRGBA_8888_GrPixelConfig;
393 desc.fWidth = desc.fHeight = kS;
Robert Phillips9da87e02019-02-04 13:26:26 -0500394 return context->priv().resourceProvider()->createTexture(desc, SkBudgeted::kNo);
Brian Salomon614c1a82018-12-19 15:42:06 -0500395 };
396
397 std::function<sk_sp<GrTexture>(GrContext*)> makers[] = {makeWrapped, makeWrappedRenderable,
398 makeNormal, makeRenderable};
399
400 // Add a unique key, or not.
401 auto addKey = [](GrTexture* texture) {
402 static uint32_t gN = 0;
403 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
404 GrUniqueKey key;
405 GrUniqueKey::Builder builder(&key, kDomain, 1);
406 builder[0] = gN++;
407 builder.finish();
408 texture->resourcePriv().setUniqueKey(key);
409 };
410 auto dontAddKey = [](GrTexture* texture) {};
411 std::function<void(GrTexture*)> keyAdders[] = {addKey, dontAddKey};
412
413 for (const auto& m : makers) {
414 for (const auto& keyAdder : keyAdders) {
415 for (int type = 0; type < sk_gpu_test::GrContextFactory::kContextTypeCnt; ++type) {
416 sk_gpu_test::GrContextFactory factory;
417 auto contextType = static_cast<sk_gpu_test::GrContextFactory::ContextType>(type);
Brian Salomon9bc76d92019-01-24 12:18:33 -0500418 GrContext* context = factory.get(contextType);
Brian Salomon614c1a82018-12-19 15:42:06 -0500419 if (!context) {
420 continue;
421 }
422
423 // The callback we add simply adds an integer to a set.
424 std::set<int> idleIDs;
425 struct Context {
426 std::set<int>* fIdleIDs;
427 int fNum;
428 };
429 auto proc = [](void* context) {
430 static_cast<Context*>(context)->fIdleIDs->insert(
431 static_cast<Context*>(context)->fNum);
432 delete static_cast<Context*>(context);
433 };
434
435 // Makes a texture, possibly adds a key, and sets the callback.
436 auto make = [&m, &keyAdder, &proc, &idleIDs](GrContext* context, int num) {
437 sk_sp<GrTexture> texture = m(context);
438 texture->setIdleProc(proc, new Context{&idleIDs, num});
439 keyAdder(texture.get());
440 return texture;
441 };
442
443 auto texture = make(context, 1);
444 REPORTER_ASSERT(reporter, idleIDs.find(1) == idleIDs.end());
445 bool isRT = SkToBool(texture->asRenderTarget());
446 auto backendFormat = texture->backendFormat();
447 texture.reset();
448 REPORTER_ASSERT(reporter, idleIDs.find(1) != idleIDs.end());
449
450 texture = make(context, 2);
451 SkImageInfo info =
452 SkImageInfo::Make(kS, kS, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
453 auto rt = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0, nullptr);
454 auto rtc = rt->getCanvas()->internal_private_accessTopLayerRenderTargetContext();
455 auto singleUseLazyCB = [&texture](GrResourceProvider* rp) {
Brian Salomon67f01952019-02-14 13:05:25 -0500456 return std::move(texture);
Brian Salomon614c1a82018-12-19 15:42:06 -0500457 };
458 GrSurfaceDesc desc;
459 desc.fWidth = desc.fHeight = kS;
460 desc.fConfig = kRGBA_8888_GrPixelConfig;
461 if (isRT) {
462 desc.fFlags = kRenderTarget_GrSurfaceFlag;
463 }
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500464 SkBudgeted budgeted;
465 if (texture->resourcePriv().budgetedType() == GrBudgetedType::kBudgeted) {
466 budgeted = SkBudgeted::kYes;
467 } else {
468 budgeted = SkBudgeted::kNo;
469 }
Robert Phillips9da87e02019-02-04 13:26:26 -0500470 auto proxy = context->priv().proxyProvider()->createLazyProxy(
Brian Salomon614c1a82018-12-19 15:42:06 -0500471 singleUseLazyCB, backendFormat, desc,
472 GrSurfaceOrigin::kTopLeft_GrSurfaceOrigin, GrMipMapped::kNo,
473 GrInternalSurfaceFlags ::kNone, SkBackingFit::kExact, budgeted,
474 GrSurfaceProxy::LazyInstantiationType::kSingleUse);
Michael Ludwigd54ca8f2019-02-13 13:25:21 -0500475 rtc->drawTexture(GrNoClip(), proxy, GrSamplerState::Filter::kNearest,
476 SkBlendMode::kSrcOver, SkPMColor4f(), SkRect::MakeWH(kS, kS),
Michael Ludwig136f45a2019-02-19 11:44:41 -0500477 SkRect::MakeWH(kS, kS), GrAA::kNo, GrQuadAAFlags::kNone,
Michael Ludwigd54ca8f2019-02-13 13:25:21 -0500478 SkCanvas::kFast_SrcRectConstraint, SkMatrix::I(), nullptr);
Brian Salomon614c1a82018-12-19 15:42:06 -0500479 // We still have the proxy, which should remain instantiated, thereby keeping the
480 // texture not purgeable.
481 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
482 context->flush();
483 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
Robert Phillips9da87e02019-02-04 13:26:26 -0500484 context->priv().getGpu()->testingOnly_flushGpuAndSync();
Brian Salomon614c1a82018-12-19 15:42:06 -0500485 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
486
487 // This time we move the proxy into the draw.
488 rtc->drawTexture(GrNoClip(), std::move(proxy), GrSamplerState::Filter::kNearest,
Michael Ludwigd54ca8f2019-02-13 13:25:21 -0500489 SkBlendMode::kSrcOver, SkPMColor4f(), SkRect::MakeWH(kS, kS),
Michael Ludwig136f45a2019-02-19 11:44:41 -0500490 SkRect::MakeWH(kS, kS), GrAA::kNo, GrQuadAAFlags::kNone,
Michael Ludwigd54ca8f2019-02-13 13:25:21 -0500491 SkCanvas::kFast_SrcRectConstraint, SkMatrix::I(), nullptr);
Brian Salomon614c1a82018-12-19 15:42:06 -0500492 REPORTER_ASSERT(reporter, idleIDs.find(2) == idleIDs.end());
493 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500494 context->priv().getGpu()->testingOnly_flushGpuAndSync();
Brian Salomon614c1a82018-12-19 15:42:06 -0500495 // Now that the draw is fully consumed by the GPU, the texture should be idle.
496 REPORTER_ASSERT(reporter, idleIDs.find(2) != idleIDs.end());
497
498 // Make a proxy that should deinstantiate even if we keep a ref on it.
499 auto deinstantiateLazyCB = [&make, &context](GrResourceProvider* rp) {
Brian Salomon67f01952019-02-14 13:05:25 -0500500 return make(context, 3);
Brian Salomon614c1a82018-12-19 15:42:06 -0500501 };
Robert Phillips9da87e02019-02-04 13:26:26 -0500502 proxy = context->priv().proxyProvider()->createLazyProxy(
Brian Salomon614c1a82018-12-19 15:42:06 -0500503 deinstantiateLazyCB, backendFormat, desc,
504 GrSurfaceOrigin::kTopLeft_GrSurfaceOrigin, GrMipMapped::kNo,
505 GrInternalSurfaceFlags ::kNone, SkBackingFit::kExact, budgeted,
506 GrSurfaceProxy::LazyInstantiationType::kDeinstantiate);
507 rtc->drawTexture(GrNoClip(), std::move(proxy), GrSamplerState::Filter::kNearest,
Michael Ludwigd54ca8f2019-02-13 13:25:21 -0500508 SkBlendMode::kSrcOver, SkPMColor4f(), SkRect::MakeWH(kS, kS),
Michael Ludwig136f45a2019-02-19 11:44:41 -0500509 SkRect::MakeWH(kS, kS), GrAA::kNo, GrQuadAAFlags::kNone,
Michael Ludwigd54ca8f2019-02-13 13:25:21 -0500510 SkCanvas::kFast_SrcRectConstraint, SkMatrix::I(), nullptr);
Brian Salomon614c1a82018-12-19 15:42:06 -0500511 // At this point the proxy shouldn't even be instantiated, there is no texture with
512 // id 3.
513 REPORTER_ASSERT(reporter, idleIDs.find(3) == idleIDs.end());
514 context->flush();
Robert Phillips9da87e02019-02-04 13:26:26 -0500515 context->priv().getGpu()->testingOnly_flushGpuAndSync();
Brian Salomon614c1a82018-12-19 15:42:06 -0500516 // Now that the draw is fully consumed, we should have deinstantiated the proxy and
517 // the texture it made should be idle.
518 REPORTER_ASSERT(reporter, idleIDs.find(3) != idleIDs.end());
519
Brian Salomon9bc76d92019-01-24 12:18:33 -0500520 // Make sure we make the call during various shutdown scenarios where the texture
521 // might persist after context is destroyed, abandoned, etc. We test three
522 // variations of each scenario. One where the texture is just created. Another,
523 // where the texture has been used in a draw and then the context is flushed. And
524 // one where the the texture was drawn but the context is not flushed.
525 // In each scenario we test holding a ref beyond the context shutdown and not.
Brian Salomon614c1a82018-12-19 15:42:06 -0500526
Brian Salomon9bc76d92019-01-24 12:18:33 -0500527 // These tests are difficult to get working with Vulkan. See http://skbug.com/8705
528 // and http://skbug.com/8275
529 GrBackendApi api = sk_gpu_test::GrContextFactory::ContextTypeBackend(contextType);
530 if (api == GrBackendApi::kVulkan) {
531 continue;
532 }
533 int id = 4;
534 enum class DrawType {
535 kNoDraw,
536 kDraw,
537 kDrawAndFlush,
538 };
539 for (auto drawType :
540 {DrawType::kNoDraw, DrawType::kDraw, DrawType::kDrawAndFlush}) {
541 for (bool unrefFirst : {false, true}) {
542 auto possiblyDrawAndFlush = [&context, &texture, drawType, unrefFirst] {
543 if (drawType == DrawType::kNoDraw) {
544 return;
545 }
546 SkImageInfo info = SkImageInfo::Make(kS, kS, kRGBA_8888_SkColorType,
547 kPremul_SkAlphaType);
548 auto rt = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0,
549 nullptr);
Robert Phillips9da87e02019-02-04 13:26:26 -0500550 auto rtc = rt->getCanvas()
Brian Salomon9bc76d92019-01-24 12:18:33 -0500551 ->internal_private_accessTopLayerRenderTargetContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500552 auto proxy = context->priv().proxyProvider()->testingOnly_createWrapped(
Brian Salomon9bc76d92019-01-24 12:18:33 -0500553 texture, kTopLeft_GrSurfaceOrigin);
554 rtc->drawTexture(GrNoClip(), proxy, GrSamplerState::Filter::kNearest,
Michael Ludwigd54ca8f2019-02-13 13:25:21 -0500555 SkBlendMode::kSrcOver, SkPMColor4f(),
556 SkRect::MakeWH(kS, kS), SkRect::MakeWH(kS, kS),
Michael Ludwig136f45a2019-02-19 11:44:41 -0500557 GrAA::kNo, GrQuadAAFlags::kNone,
Brian Salomon9bc76d92019-01-24 12:18:33 -0500558 SkCanvas::kFast_SrcRectConstraint, SkMatrix::I(),
559 nullptr);
560 if (drawType == DrawType::kDrawAndFlush) {
561 context->flush();
562 }
563 if (unrefFirst) {
564 texture.reset();
565 }
566 };
567 texture = make(context, id);
568 possiblyDrawAndFlush();
569 context->abandonContext();
570 texture.reset();
571 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
572 factory.destroyContexts();
573 context = factory.get(contextType);
574 ++id;
Brian Salomon614c1a82018-12-19 15:42:06 -0500575
Brian Salomon9bc76d92019-01-24 12:18:33 -0500576 // Similar to previous, but reset the texture after the context was
577 // abandoned and then destroyed.
578 texture = make(context, id);
579 possiblyDrawAndFlush();
580 context->abandonContext();
581 factory.destroyContexts();
582 texture.reset();
583 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
584 context = factory.get(contextType);
585 id++;
586
587 texture = make(context, id);
588 possiblyDrawAndFlush();
589 factory.destroyContexts();
590 texture.reset();
591 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
592 context = factory.get(contextType);
593 id++;
594
595 texture = make(context, id);
596 possiblyDrawAndFlush();
597 factory.releaseResourcesAndAbandonContexts();
598 texture.reset();
599 REPORTER_ASSERT(reporter, idleIDs.find(id) != idleIDs.end());
600 context = factory.get(contextType);
601 id++;
602 }
603 }
Brian Salomon614c1a82018-12-19 15:42:06 -0500604 }
605 }
606 }
607}