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