robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [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 | |
| 10 | #include "Test.h" |
| 11 | |
| 12 | #if SK_SUPPORT_GPU |
Greg Daniel | fdd77da | 2017-04-26 12:19:14 -0400 | [diff] [blame] | 13 | #include "GrBackendSurface.h" |
Robert Phillips | c7635fa | 2016-10-28 13:25:24 -0400 | [diff] [blame] | 14 | #include "GrRenderTargetPriv.h" |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 15 | #include "GrRenderTargetProxy.h" |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 16 | #include "GrResourceProvider.h" |
| 17 | #include "GrSurfaceProxy.h" |
| 18 | #include "GrTextureProxy.h" |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 19 | |
robertphillips | 8abb370 | 2016-08-31 14:04:06 -0700 | [diff] [blame] | 20 | // Check that the surface proxy's member vars are set as expected |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 21 | static void check_surface(skiatest::Reporter* reporter, |
| 22 | GrSurfaceProxy* proxy, |
| 23 | GrSurfaceOrigin origin, |
Greg Daniel | fdd77da | 2017-04-26 12:19:14 -0400 | [diff] [blame] | 24 | int width, int height, |
robertphillips | 8abb370 | 2016-08-31 14:04:06 -0700 | [diff] [blame] | 25 | GrPixelConfig config, |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 26 | const GrGpuResource::UniqueID& uniqueID, |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 27 | SkBudgeted budgeted) { |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 28 | REPORTER_ASSERT(reporter, proxy->origin() == origin); |
| 29 | REPORTER_ASSERT(reporter, proxy->width() == width); |
| 30 | REPORTER_ASSERT(reporter, proxy->height() == height); |
| 31 | REPORTER_ASSERT(reporter, proxy->config() == config); |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 32 | if (!uniqueID.isInvalid()) { |
| 33 | REPORTER_ASSERT(reporter, proxy->uniqueID().asUInt() == uniqueID.asUInt()); |
| 34 | } else { |
| 35 | REPORTER_ASSERT(reporter, !proxy->uniqueID().isInvalid()); |
robertphillips | 8abb370 | 2016-08-31 14:04:06 -0700 | [diff] [blame] | 36 | } |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 37 | REPORTER_ASSERT(reporter, proxy->isBudgeted() == budgeted); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | static void check_rendertarget(skiatest::Reporter* reporter, |
Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 41 | const GrCaps& caps, |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 42 | GrResourceProvider* provider, |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 43 | GrRenderTargetProxy* rtProxy, |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 44 | int numSamples, |
Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 45 | SkBackingFit fit, |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 46 | int expectedMaxWindowRects, |
| 47 | bool wasWrapped) { |
Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 48 | REPORTER_ASSERT(reporter, rtProxy->maxWindowRectangles(caps) == expectedMaxWindowRects); |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 49 | REPORTER_ASSERT(reporter, rtProxy->numStencilSamples() == numSamples); |
| 50 | |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 51 | GrSurfaceProxy::UniqueID idBefore = rtProxy->uniqueID(); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 52 | GrRenderTarget* rt = rtProxy->instantiate(provider); |
| 53 | REPORTER_ASSERT(reporter, rt); |
| 54 | |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 55 | REPORTER_ASSERT(reporter, rtProxy->uniqueID() == idBefore); |
| 56 | if (wasWrapped) { |
| 57 | // Wrapped resources share their uniqueID with the wrapping RenderTargetProxy |
| 58 | REPORTER_ASSERT(reporter, rtProxy->uniqueID().asUInt() == rt->uniqueID().asUInt()); |
| 59 | } else { |
| 60 | // Deferred resources should always have a different ID from their instantiated rendertarget |
| 61 | REPORTER_ASSERT(reporter, rtProxy->uniqueID().asUInt() != rt->uniqueID().asUInt()); |
| 62 | } |
| 63 | |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 64 | REPORTER_ASSERT(reporter, rt->origin() == rtProxy->origin()); |
| 65 | if (SkBackingFit::kExact == fit) { |
| 66 | REPORTER_ASSERT(reporter, rt->width() == rtProxy->width()); |
| 67 | REPORTER_ASSERT(reporter, rt->height() == rtProxy->height()); |
| 68 | } else { |
| 69 | REPORTER_ASSERT(reporter, rt->width() >= rtProxy->width()); |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 70 | REPORTER_ASSERT(reporter, rt->height() >= rtProxy->height()); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 71 | } |
| 72 | REPORTER_ASSERT(reporter, rt->config() == rtProxy->config()); |
| 73 | |
| 74 | REPORTER_ASSERT(reporter, rt->isUnifiedMultisampled() == rtProxy->isUnifiedMultisampled()); |
| 75 | REPORTER_ASSERT(reporter, rt->isStencilBufferMultisampled() == |
| 76 | rtProxy->isStencilBufferMultisampled()); |
| 77 | REPORTER_ASSERT(reporter, rt->numColorSamples() == rtProxy->numColorSamples()); |
| 78 | REPORTER_ASSERT(reporter, rt->numStencilSamples() == rtProxy->numStencilSamples()); |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 79 | REPORTER_ASSERT(reporter, rt->isMixedSampled() == rtProxy->isMixedSampled()); |
| 80 | REPORTER_ASSERT(reporter, rt->renderTargetPriv().flags() == rtProxy->testingOnly_getFlags()); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static void check_texture(skiatest::Reporter* reporter, |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 84 | GrResourceProvider* provider, |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 85 | GrTextureProxy* texProxy, |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 86 | SkBackingFit fit, |
| 87 | bool wasWrapped) { |
| 88 | GrSurfaceProxy::UniqueID idBefore = texProxy->uniqueID(); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 89 | GrTexture* tex = texProxy->instantiate(provider); |
| 90 | REPORTER_ASSERT(reporter, tex); |
| 91 | |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 92 | REPORTER_ASSERT(reporter, texProxy->uniqueID() == idBefore); |
| 93 | if (wasWrapped) { |
| 94 | // Wrapped resources share their uniqueID with the wrapping TextureProxy |
| 95 | REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() == tex->uniqueID().asUInt()); |
| 96 | } else { |
| 97 | // Deferred resources should always have a different ID from their instantiated texture |
| 98 | REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() != tex->uniqueID().asUInt()); |
| 99 | } |
| 100 | |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 101 | REPORTER_ASSERT(reporter, tex->origin() == texProxy->origin()); |
| 102 | if (SkBackingFit::kExact == fit) { |
| 103 | REPORTER_ASSERT(reporter, tex->width() == texProxy->width()); |
| 104 | REPORTER_ASSERT(reporter, tex->height() == texProxy->height()); |
| 105 | } else { |
| 106 | REPORTER_ASSERT(reporter, tex->width() >= texProxy->width()); |
| 107 | REPORTER_ASSERT(reporter, tex->height() >= texProxy->height()); |
| 108 | } |
| 109 | REPORTER_ASSERT(reporter, tex->config() == texProxy->config()); |
| 110 | } |
| 111 | |
| 112 | |
robertphillips | 8abb370 | 2016-08-31 14:04:06 -0700 | [diff] [blame] | 113 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DeferredProxyTest, reporter, ctxInfo) { |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 114 | GrResourceProvider* provider = ctxInfo.grContext()->resourceProvider(); |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 115 | const GrCaps& caps = *ctxInfo.grContext()->caps(); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 116 | |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 117 | const GrGpuResource::UniqueID kInvalidResourceID = GrGpuResource::UniqueID::InvalidID(); |
| 118 | |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 119 | int attempt = 0; // useful for debugging |
| 120 | |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 121 | for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin }) { |
Robert Phillips | 40d9495 | 2017-01-30 14:15:59 -0500 | [diff] [blame] | 122 | for (auto widthHeight : { 100, 128, 1048576 }) { |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 123 | for (auto config : { kAlpha_8_GrPixelConfig, kRGB_565_GrPixelConfig, |
| 124 | kETC1_GrPixelConfig, kRGBA_8888_GrPixelConfig }) { |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 125 | for (auto fit : { SkBackingFit::kExact, SkBackingFit::kApprox }) { |
| 126 | for (auto budgeted : { SkBudgeted::kYes, SkBudgeted::kNo }) { |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 127 | for (auto numSamples : { 0, 4, 16, 128 }) { |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 128 | GrSurfaceDesc desc; |
Robert Phillips | 84a8120 | 2016-11-04 11:59:10 -0400 | [diff] [blame] | 129 | desc.fFlags = kRenderTarget_GrSurfaceFlag; |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 130 | desc.fOrigin = origin; |
| 131 | desc.fWidth = widthHeight; |
| 132 | desc.fHeight = widthHeight; |
| 133 | desc.fConfig = config; |
| 134 | desc.fSampleCnt = numSamples; |
| 135 | |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 136 | { |
| 137 | sk_sp<GrTexture> tex; |
| 138 | if (SkBackingFit::kApprox == fit) { |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 139 | tex.reset(provider->createApproxTexture(desc, 0)); |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 140 | } else { |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 141 | tex = provider->createTexture(desc, budgeted); |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 142 | } |
| 143 | |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 144 | sk_sp<GrTextureProxy> proxy(GrSurfaceProxy::MakeDeferred( |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 145 | provider, desc, |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 146 | fit, budgeted)); |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 147 | REPORTER_ASSERT(reporter, SkToBool(tex) == SkToBool(proxy)); |
| 148 | if (proxy) { |
| 149 | REPORTER_ASSERT(reporter, proxy->asRenderTargetProxy()); |
Robert Phillips | 40d9495 | 2017-01-30 14:15:59 -0500 | [diff] [blame] | 150 | // This forces the proxy to compute and cache its |
| 151 | // pre-instantiation size guess. Later, when it is actually |
| 152 | // instantiated, it checks that the instantiated size is <= to |
| 153 | // the pre-computation. If the proxy never computed its |
| 154 | // pre-instantiation size then the check is skipped. |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 155 | proxy->gpuMemorySize(); |
Robert Phillips | b446088 | 2016-11-17 14:43:51 -0500 | [diff] [blame] | 156 | |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 157 | check_surface(reporter, proxy.get(), origin, |
Robert Phillips | 40d9495 | 2017-01-30 14:15:59 -0500 | [diff] [blame] | 158 | widthHeight, widthHeight, config, |
| 159 | kInvalidResourceID, budgeted); |
| 160 | check_rendertarget(reporter, caps, provider, |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 161 | proxy->asRenderTargetProxy(), |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 162 | SkTMin(numSamples, caps.maxSampleCount()), |
Robert Phillips | 40d9495 | 2017-01-30 14:15:59 -0500 | [diff] [blame] | 163 | fit, caps.maxWindowRectangles(), false); |
| 164 | } |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Robert Phillips | 84a8120 | 2016-11-04 11:59:10 -0400 | [diff] [blame] | 167 | desc.fFlags = kNone_GrSurfaceFlags; |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 168 | |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 169 | { |
| 170 | sk_sp<GrTexture> tex; |
| 171 | if (SkBackingFit::kApprox == fit) { |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 172 | tex.reset(provider->createApproxTexture(desc, 0)); |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 173 | } else { |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 174 | tex = provider->createTexture(desc, budgeted); |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 175 | } |
Robert Phillips | b446088 | 2016-11-17 14:43:51 -0500 | [diff] [blame] | 176 | |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 177 | sk_sp<GrTextureProxy> proxy(GrSurfaceProxy::MakeDeferred(provider, |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 178 | desc, |
| 179 | fit, |
| 180 | budgeted)); |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 181 | REPORTER_ASSERT(reporter, SkToBool(tex) == SkToBool(proxy)); |
| 182 | if (proxy) { |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 183 | // This forces the proxy to compute and cache its pre-instantiation |
| 184 | // size guess. Later, when it is actually instantiated, it checks |
| 185 | // that the instantiated size is <= to the pre-computation. |
| 186 | // If the proxy never computed its pre-instantiation size then the |
| 187 | // check is skipped. |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 188 | proxy->gpuMemorySize(); |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 189 | |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 190 | check_surface(reporter, proxy.get(), origin, |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 191 | widthHeight, widthHeight, config, |
| 192 | kInvalidResourceID, budgeted); |
Robert Phillips | 2f49314 | 2017-03-02 18:18:38 -0500 | [diff] [blame] | 193 | check_texture(reporter, provider, proxy->asTextureProxy(), |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 194 | fit, false); |
| 195 | } |
Robert Phillips | 40d9495 | 2017-01-30 14:15:59 -0500 | [diff] [blame] | 196 | } |
Robert Phillips | 6520a69 | 2017-02-01 09:20:00 -0500 | [diff] [blame] | 197 | |
| 198 | attempt++; |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 199 | } |
| 200 | } |
| 201 | } |
| 202 | } |
| 203 | } |
| 204 | } |
| 205 | } |
| 206 | |
egdaniel | ab527a5 | 2016-06-28 08:07:26 -0700 | [diff] [blame] | 207 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WrappedProxyTest, reporter, ctxInfo) { |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 208 | GrResourceProvider* provider = ctxInfo.grContext()->resourceProvider(); |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 209 | const GrCaps& caps = *ctxInfo.grContext()->caps(); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 210 | |
| 211 | static const int kWidthHeight = 100; |
| 212 | |
| 213 | for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin }) { |
| 214 | for (auto config : { kAlpha_8_GrPixelConfig, kRGBA_8888_GrPixelConfig }) { |
| 215 | for (auto budgeted : { SkBudgeted::kYes, SkBudgeted::kNo }) { |
| 216 | for (auto numSamples: { 0, 4}) { |
Robert Phillips | 78de212 | 2017-04-26 07:44:26 -0400 | [diff] [blame] | 217 | if (caps.maxSampleCount() < numSamples) { |
| 218 | continue; |
| 219 | } |
| 220 | |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 221 | bool renderable = caps.isConfigRenderable(config, numSamples > 0); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 222 | |
| 223 | GrSurfaceDesc desc; |
| 224 | desc.fOrigin = origin; |
| 225 | desc.fWidth = kWidthHeight; |
| 226 | desc.fHeight = kWidthHeight; |
| 227 | desc.fConfig = config; |
| 228 | desc.fSampleCnt = numSamples; |
| 229 | |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 230 | // External on-screen render target. |
| 231 | if (renderable && kOpenGL_GrBackend == ctxInfo.backend()) { |
Greg Daniel | fdd77da | 2017-04-26 12:19:14 -0400 | [diff] [blame] | 232 | GrGLFramebufferInfo fboInfo; |
| 233 | fboInfo.fFBOID = 0; |
| 234 | GrBackendRenderTarget backendRT(kWidthHeight, kWidthHeight, numSamples, 8, |
| 235 | config, fboInfo); |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 236 | |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 237 | sk_sp<GrRenderTarget> defaultFBO( |
Greg Daniel | fdd77da | 2017-04-26 12:19:14 -0400 | [diff] [blame] | 238 | provider->wrapBackendRenderTarget(backendRT, origin)); |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 239 | |
Robert Phillips | 3743013 | 2016-11-09 06:50:43 -0500 | [diff] [blame] | 240 | sk_sp<GrSurfaceProxy> sProxy(GrSurfaceProxy::MakeWrapped(defaultFBO)); |
| 241 | check_surface(reporter, sProxy.get(), origin, |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 242 | kWidthHeight, kWidthHeight, config, |
| 243 | defaultFBO->uniqueID(), SkBudgeted::kNo); |
Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 244 | check_rendertarget(reporter, caps, provider, sProxy->asRenderTargetProxy(), |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 245 | numSamples, SkBackingFit::kExact, 0, true); |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 246 | } |
| 247 | |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 248 | sk_sp<GrTexture> tex; |
| 249 | |
csmartdalton | f963599 | 2016-08-10 11:09:07 -0700 | [diff] [blame] | 250 | // Internal offscreen render target. |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 251 | if (renderable) { |
| 252 | desc.fFlags = kRenderTarget_GrSurfaceFlag; |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 253 | tex = provider->createTexture(desc, budgeted); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 254 | sk_sp<GrRenderTarget> rt(sk_ref_sp(tex->asRenderTarget())); |
| 255 | |
Robert Phillips | 3743013 | 2016-11-09 06:50:43 -0500 | [diff] [blame] | 256 | sk_sp<GrSurfaceProxy> sProxy(GrSurfaceProxy::MakeWrapped(rt)); |
| 257 | check_surface(reporter, sProxy.get(), origin, |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 258 | kWidthHeight, kWidthHeight, config, |
| 259 | rt->uniqueID(), budgeted); |
Robert Phillips | ec2249f | 2016-11-09 08:54:35 -0500 | [diff] [blame] | 260 | check_rendertarget(reporter, caps, provider, sProxy->asRenderTargetProxy(), |
| 261 | numSamples, SkBackingFit::kExact, |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 262 | caps.maxWindowRectangles(), true); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | if (!tex) { |
| 266 | SkASSERT(kNone_GrSurfaceFlags == desc.fFlags ); |
| 267 | desc.fSampleCnt = 0; |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 268 | tex = provider->createTexture(desc, budgeted); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 269 | } |
| 270 | |
Robert Phillips | 3743013 | 2016-11-09 06:50:43 -0500 | [diff] [blame] | 271 | sk_sp<GrSurfaceProxy> sProxy(GrSurfaceProxy::MakeWrapped(tex)); |
| 272 | check_surface(reporter, sProxy.get(), origin, |
Robert Phillips | abacf09 | 2016-11-02 10:23:32 -0400 | [diff] [blame] | 273 | kWidthHeight, kWidthHeight, config, tex->uniqueID(), budgeted); |
Robert Phillips | 3743013 | 2016-11-09 06:50:43 -0500 | [diff] [blame] | 274 | check_texture(reporter, provider, sProxy->asTextureProxy(), |
Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 275 | SkBackingFit::kExact, true); |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | } |
| 279 | } |
| 280 | } |
| 281 | |
Robert Phillips | 78de212 | 2017-04-26 07:44:26 -0400 | [diff] [blame] | 282 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ZeroSizedProxyTest, reporter, ctxInfo) { |
| 283 | GrResourceProvider* provider = ctxInfo.grContext()->resourceProvider(); |
| 284 | |
| 285 | for (auto flags : { kRenderTarget_GrSurfaceFlag, kNone_GrSurfaceFlags }) { |
| 286 | for (auto fit : { SkBackingFit::kExact, SkBackingFit::kApprox }) { |
| 287 | for (int width : { 0, 100 }) { |
| 288 | for (int height : { 0, 100}) { |
| 289 | if (width && height) { |
| 290 | continue; // not zero-sized |
| 291 | } |
| 292 | |
| 293 | GrSurfaceDesc desc; |
| 294 | desc.fFlags = flags; |
| 295 | desc.fOrigin = kBottomLeft_GrSurfaceOrigin; |
| 296 | desc.fWidth = width; |
| 297 | desc.fHeight = height; |
| 298 | desc.fConfig = kRGBA_8888_GrPixelConfig; |
| 299 | desc.fSampleCnt = 0; |
| 300 | |
| 301 | sk_sp<GrTextureProxy> proxy(GrSurfaceProxy::MakeDeferred(provider, |
| 302 | desc, |
| 303 | fit, |
| 304 | SkBudgeted::kNo)); |
| 305 | REPORTER_ASSERT(reporter, !proxy); |
| 306 | } |
| 307 | } |
| 308 | } |
| 309 | } |
| 310 | } |
| 311 | |
robertphillips | 76948d4 | 2016-05-04 12:47:41 -0700 | [diff] [blame] | 312 | #endif |