robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | // This is a GPU-backend specific test. |
| 9 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 10 | #include "tests/Test.h" |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 11 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | #include "include/gpu/GrTexture.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 13 | #include "src/gpu/GrContextPriv.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 14 | #include "src/gpu/GrProxyProvider.h" |
Greg Daniel | f91aeb2 | 2019-06-18 09:58:02 -0400 | [diff] [blame] | 15 | #include "src/gpu/GrRenderTargetProxy.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 16 | #include "src/gpu/GrResourceProvider.h" |
Greg Daniel | f91aeb2 | 2019-06-18 09:58:02 -0400 | [diff] [blame] | 17 | #include "src/gpu/GrSurfaceProxy.h" |
| 18 | #include "src/gpu/GrTextureProxy.h" |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 19 | |
Robert Phillips | 7928e76 | 2017-02-28 16:30:28 -0500 | [diff] [blame] | 20 | static const int kWidthHeight = 128; |
| 21 | |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 22 | static void check_refs(skiatest::Reporter* reporter, |
Robert Phillips | 7ee385e | 2017-03-30 08:02:11 -0400 | [diff] [blame] | 23 | GrTextureProxy* proxy, |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 24 | int32_t expectedProxyRefs, |
Robert Phillips | 3d4cac5 | 2019-06-11 08:08:08 -0400 | [diff] [blame] | 25 | int32_t expectedBackingRefs) { |
Brian Salomon | a036f0d | 2019-08-29 11:16:04 -0400 | [diff] [blame] | 26 | int32_t actualProxyRefs = proxy->refCnt(); |
Robert Phillips | b520476 | 2019-06-19 14:12:13 -0400 | [diff] [blame] | 27 | int32_t actualBackingRefs = proxy->testingOnly_getBackingRefCnt(); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 28 | |
Robert Phillips | 3d4cac5 | 2019-06-11 08:08:08 -0400 | [diff] [blame] | 29 | SkASSERT(actualProxyRefs == expectedProxyRefs); |
| 30 | SkASSERT(actualBackingRefs == expectedBackingRefs); |
| 31 | |
| 32 | REPORTER_ASSERT(reporter, actualProxyRefs == expectedProxyRefs); |
| 33 | REPORTER_ASSERT(reporter, actualBackingRefs == expectedBackingRefs); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 34 | } |
| 35 | |
Robert Phillips | 0a15cc6 | 2019-07-30 12:49:10 -0400 | [diff] [blame] | 36 | static sk_sp<GrTextureProxy> make_deferred(GrContext* context) { |
| 37 | GrProxyProvider* proxyProvider = context->priv().proxyProvider(); |
| 38 | const GrCaps* caps = context->priv().caps(); |
| 39 | |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 40 | GrSurfaceDesc desc; |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 41 | desc.fWidth = kWidthHeight; |
| 42 | desc.fHeight = kWidthHeight; |
| 43 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
| 44 | |
Robert Phillips | 0a15cc6 | 2019-07-30 12:49:10 -0400 | [diff] [blame] | 45 | const GrBackendFormat format = caps->getDefaultBackendFormat(GrColorType::kRGBA_8888, |
| 46 | GrRenderable::kYes); |
Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 47 | return proxyProvider->createProxy(format, desc, GrRenderable::kYes, 1, |
Brian Salomon | beb7f52 | 2019-08-30 16:19:42 -0400 | [diff] [blame] | 48 | kBottomLeft_GrSurfaceOrigin, GrMipMapped::kNo, |
| 49 | SkBackingFit::kApprox, SkBudgeted::kYes, GrProtected::kNo); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 50 | } |
| 51 | |
Robert Phillips | 0a15cc6 | 2019-07-30 12:49:10 -0400 | [diff] [blame] | 52 | static sk_sp<GrTextureProxy> make_wrapped(GrContext* context) { |
| 53 | GrProxyProvider* proxyProvider = context->priv().proxyProvider(); |
| 54 | |
Chris Dalton | d004e0b | 2018-09-27 09:28:03 -0600 | [diff] [blame] | 55 | return proxyProvider->testingOnly_createInstantiatedProxy( |
Brian Salomon | 4eb38b7 | 2019-08-05 12:58:39 -0400 | [diff] [blame] | 56 | {kWidthHeight, kWidthHeight}, GrColorType::kRGBA_8888, GrRenderable::kYes, 1, |
| 57 | kBottomLeft_GrSurfaceOrigin, SkBackingFit::kExact, SkBudgeted::kNo, GrProtected::kNo); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ProxyRefTest, reporter, ctxInfo) { |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 61 | GrResourceProvider* resourceProvider = ctxInfo.grContext()->priv().resourceProvider(); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 62 | |
| 63 | for (auto make : { make_deferred, make_wrapped }) { |
Robert Phillips | 80bff5b | 2019-08-20 16:56:18 -0400 | [diff] [blame] | 64 | // An extra ref |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 65 | { |
Robert Phillips | 0a15cc6 | 2019-07-30 12:49:10 -0400 | [diff] [blame] | 66 | sk_sp<GrTextureProxy> proxy((*make)(ctxInfo.grContext())); |
Robert Phillips | 80bff5b | 2019-08-20 16:56:18 -0400 | [diff] [blame] | 67 | if (proxy) { |
| 68 | sk_sp<GrTextureProxy> extraRef(proxy); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 69 | |
Robert Phillips | b520476 | 2019-06-19 14:12:13 -0400 | [diff] [blame] | 70 | int backingRefs = proxy->isInstantiated() ? 1 : -1; |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 71 | |
Robert Phillips | 3d4cac5 | 2019-06-11 08:08:08 -0400 | [diff] [blame] | 72 | check_refs(reporter, proxy.get(), 2, backingRefs); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 73 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 74 | proxy->instantiate(resourceProvider); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 75 | |
Robert Phillips | e5f7328 | 2019-06-18 17:15:04 -0400 | [diff] [blame] | 76 | check_refs(reporter, proxy.get(), 2, 1); |
Jim Van Verth | 311cc6b | 2017-09-20 17:51:59 -0400 | [diff] [blame] | 77 | } |
Robert Phillips | 3d4cac5 | 2019-06-11 08:08:08 -0400 | [diff] [blame] | 78 | check_refs(reporter, proxy.get(), 1, 1); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | // Multiple normal refs |
| 82 | { |
Robert Phillips | 0a15cc6 | 2019-07-30 12:49:10 -0400 | [diff] [blame] | 83 | sk_sp<GrTextureProxy> proxy((*make)(ctxInfo.grContext())); |
Jim Van Verth | 311cc6b | 2017-09-20 17:51:59 -0400 | [diff] [blame] | 84 | if (proxy.get()) { |
| 85 | proxy->ref(); |
| 86 | proxy->ref(); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 87 | |
Robert Phillips | b520476 | 2019-06-19 14:12:13 -0400 | [diff] [blame] | 88 | int backingRefs = proxy->isInstantiated() ? 1 : -1; |
Robert Phillips | 715d08c | 2018-07-18 13:56:48 -0400 | [diff] [blame] | 89 | |
Robert Phillips | 3d4cac5 | 2019-06-11 08:08:08 -0400 | [diff] [blame] | 90 | check_refs(reporter, proxy.get(), 3, backingRefs); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 91 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 92 | proxy->instantiate(resourceProvider); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 93 | |
Robert Phillips | e5f7328 | 2019-06-18 17:15:04 -0400 | [diff] [blame] | 94 | check_refs(reporter, proxy.get(), 3, 1); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 95 | |
Jim Van Verth | 311cc6b | 2017-09-20 17:51:59 -0400 | [diff] [blame] | 96 | proxy->unref(); |
| 97 | proxy->unref(); |
| 98 | } |
Robert Phillips | 3d4cac5 | 2019-06-11 08:08:08 -0400 | [diff] [blame] | 99 | check_refs(reporter, proxy.get(), 1, 1); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | // Continue using (reffing) proxy after instantiation |
| 103 | { |
Robert Phillips | 0a15cc6 | 2019-07-30 12:49:10 -0400 | [diff] [blame] | 104 | sk_sp<GrTextureProxy> proxy((*make)(ctxInfo.grContext())); |
Robert Phillips | 80bff5b | 2019-08-20 16:56:18 -0400 | [diff] [blame] | 105 | if (proxy) { |
| 106 | sk_sp<GrTextureProxy> firstExtraRef(proxy); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 107 | |
Robert Phillips | b520476 | 2019-06-19 14:12:13 -0400 | [diff] [blame] | 108 | int backingRefs = proxy->isInstantiated() ? 1 : -1; |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 109 | |
Robert Phillips | 80bff5b | 2019-08-20 16:56:18 -0400 | [diff] [blame] | 110 | check_refs(reporter, proxy.get(), 2, backingRefs); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 111 | |
Robert Phillips | 0bd24dc | 2018-01-16 08:06:32 -0500 | [diff] [blame] | 112 | proxy->instantiate(resourceProvider); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 113 | |
Robert Phillips | e5f7328 | 2019-06-18 17:15:04 -0400 | [diff] [blame] | 114 | check_refs(reporter, proxy.get(), 2, 1); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 115 | |
Robert Phillips | 80bff5b | 2019-08-20 16:56:18 -0400 | [diff] [blame] | 116 | sk_sp<GrTextureProxy> secondExtraRef(proxy); |
Robert Phillips | e5f7328 | 2019-06-18 17:15:04 -0400 | [diff] [blame] | 117 | check_refs(reporter, proxy.get(), 3, 1); |
Jim Van Verth | 311cc6b | 2017-09-20 17:51:59 -0400 | [diff] [blame] | 118 | } |
Robert Phillips | 3d4cac5 | 2019-06-11 08:08:08 -0400 | [diff] [blame] | 119 | check_refs(reporter, proxy.get(), 1, 1); |
robertphillips | 1125a03 | 2016-11-16 11:17:17 -0800 | [diff] [blame] | 120 | } |
| 121 | } |
| 122 | } |