blob: 693fc54f42645665c27821452b1bff2237b9be7c [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
bsalomon@google.com686bcb82013-04-09 15:04:12 +00008#include "GrContext.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +00009#include "GrContextPriv.h"
bsalomon091f60c2015-11-10 11:54:56 -080010#include "GrGpu.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050011#include "GrProxyProvider.h"
Robert Phillips2890fbf2017-07-26 15:48:41 -040012#include "GrRenderTarget.h"
Brian Osman32342f02017-03-04 08:12:46 -050013#include "GrResourceProvider.h"
bsalomon@google.com686bcb82013-04-09 15:04:12 +000014#include "GrTexture.h"
Brian Salomonc67c31c2018-12-06 10:00:03 -050015#include "GrTexturePriv.h"
16#include "SkAutoPixmapStorage.h"
Brian Osman48c99192017-06-02 08:45:06 -040017#include "SkMipMap.h"
Brian Salomonc67c31c2018-12-06 10:00:03 -050018#include "SkTypes.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000019#include "Test.h"
bsalomon@google.com686bcb82013-04-09 15:04:12 +000020
bsalomona2c23232014-11-25 07:41:12 -080021// Tests that GrSurface::asTexture(), GrSurface::asRenderTarget(), and static upcasting of texture
22// and render targets to GrSurface all work as expected.
bsalomon758586c2016-04-06 14:02:39 -070023DEF_GPUTEST_FOR_NULLGL_CONTEXT(GrSurface, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070024 GrContext* context = ctxInfo.grContext();
Robert Phillips6be756b2018-01-16 15:07:54 -050025 auto resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050026 GrGpu* gpu = context->contextPriv().getGpu();
Robert Phillips6be756b2018-01-16 15:07:54 -050027
kkinnunen15302832015-12-01 04:35:26 -080028 GrSurfaceDesc desc;
kkinnunen15302832015-12-01 04:35:26 -080029 desc.fFlags = kRenderTarget_GrSurfaceFlag;
30 desc.fWidth = 256;
31 desc.fHeight = 256;
Robert Phillips16d8ec62017-07-27 16:16:25 -040032 desc.fConfig = kRGBA_8888_GrPixelConfig;
Brian Salomonbdecacf2018-02-02 20:32:49 -050033 desc.fSampleCnt = 1;
Robert Phillips6be756b2018-01-16 15:07:54 -050034 sk_sp<GrSurface> texRT1 = resourceProvider->createTexture(desc, SkBudgeted::kNo);
bsalomona2c23232014-11-25 07:41:12 -080035
Robert Phillipse78b7252017-04-06 07:59:41 -040036 REPORTER_ASSERT(reporter, texRT1.get() == texRT1->asRenderTarget());
37 REPORTER_ASSERT(reporter, texRT1.get() == texRT1->asTexture());
kkinnunen15302832015-12-01 04:35:26 -080038 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
39 texRT1->asTexture());
40 REPORTER_ASSERT(reporter, texRT1->asRenderTarget() ==
41 static_cast<GrSurface*>(texRT1->asTexture()));
42 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
43 static_cast<GrSurface*>(texRT1->asTexture()));
bsalomona2c23232014-11-25 07:41:12 -080044
kkinnunen15302832015-12-01 04:35:26 -080045 desc.fFlags = kNone_GrSurfaceFlags;
Robert Phillips6be756b2018-01-16 15:07:54 -050046 sk_sp<GrTexture> tex1 = resourceProvider->createTexture(desc, SkBudgeted::kNo);
kkinnunen15302832015-12-01 04:35:26 -080047 REPORTER_ASSERT(reporter, nullptr == tex1->asRenderTarget());
Robert Phillipse78b7252017-04-06 07:59:41 -040048 REPORTER_ASSERT(reporter, tex1.get() == tex1->asTexture());
49 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(tex1.get()) == tex1->asTexture());
bsalomon@google.com686bcb82013-04-09 15:04:12 +000050
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050051 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Robert Phillips646f6372018-09-25 09:31:10 -040052 nullptr, 256, 256, GrColorType::kRGBA_8888, false, GrMipMapped::kNo);
bsalomon091f60c2015-11-10 11:54:56 -080053
Brian Salomonbdecacf2018-02-02 20:32:49 -050054 sk_sp<GrSurface> texRT2 =
55 resourceProvider->wrapRenderableBackendTexture(backendTex, 1, kBorrow_GrWrapOwnership);
Greg Daniel7ef28f32017-04-20 16:41:55 +000056
bungeman6bd52842016-10-27 09:30:08 -070057 REPORTER_ASSERT(reporter, texRT2.get() == texRT2->asRenderTarget());
58 REPORTER_ASSERT(reporter, texRT2.get() == texRT2->asTexture());
kkinnunen15302832015-12-01 04:35:26 -080059 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
60 texRT2->asTexture());
61 REPORTER_ASSERT(reporter, texRT2->asRenderTarget() ==
62 static_cast<GrSurface*>(texRT2->asTexture()));
63 REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
64 static_cast<GrSurface*>(texRT2->asTexture()));
bsalomon@google.com686bcb82013-04-09 15:04:12 +000065
Brian Salomon26102cb2018-03-09 09:33:19 -050066 gpu->deleteTestingOnlyBackendTexture(backendTex);
bsalomon@google.com686bcb82013-04-09 15:04:12 +000067}
68
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040069// This test checks that the isConfigTexturable and isConfigRenderable are
70// consistent with createTexture's result.
71DEF_GPUTEST_FOR_ALL_CONTEXTS(GrSurfaceRenderability, reporter, ctxInfo) {
72 GrContext* context = ctxInfo.grContext();
Robert Phillips1afd4cd2018-01-08 13:40:32 -050073 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips6be756b2018-01-16 15:07:54 -050074 GrResourceProvider* resourceProvider = context->contextPriv().resourceProvider();
Brian Salomonc7fe0f72018-05-11 10:14:21 -040075 const GrCaps* caps = context->contextPriv().caps();
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040076
77 GrPixelConfig configs[] = {
78 kUnknown_GrPixelConfig,
79 kAlpha_8_GrPixelConfig,
Greg Danielef59d872017-11-17 16:47:21 -050080 kAlpha_8_as_Alpha_GrPixelConfig,
81 kAlpha_8_as_Red_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040082 kGray_8_GrPixelConfig,
Greg Daniel7af060a2017-12-05 16:27:11 -050083 kGray_8_as_Lum_GrPixelConfig,
84 kGray_8_as_Red_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040085 kRGB_565_GrPixelConfig,
86 kRGBA_4444_GrPixelConfig,
87 kRGBA_8888_GrPixelConfig,
Brian Salomon5fba7ad2018-03-22 10:01:16 -040088 kRGB_888_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040089 kBGRA_8888_GrPixelConfig,
90 kSRGBA_8888_GrPixelConfig,
91 kSBGRA_8888_GrPixelConfig,
Brian Osman10fc6fd2018-03-02 11:01:10 -050092 kRGBA_1010102_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040093 kRGBA_float_GrPixelConfig,
94 kRG_float_GrPixelConfig,
95 kAlpha_half_GrPixelConfig,
Greg Danielef59d872017-11-17 16:47:21 -050096 kAlpha_half_as_Red_GrPixelConfig,
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -040097 kRGBA_half_GrPixelConfig,
98 };
Brian Salomon5fba7ad2018-03-22 10:01:16 -040099 GR_STATIC_ASSERT(kGrPixelConfigCnt == SK_ARRAY_COUNT(configs));
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400100
101 GrSurfaceDesc desc;
102 desc.fWidth = 64;
103 desc.fHeight = 64;
104
105 for (GrPixelConfig config : configs) {
106 for (GrSurfaceOrigin origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
107 desc.fFlags = kNone_GrSurfaceFlags;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400108 desc.fConfig = config;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500109 desc.fSampleCnt = 1;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400110
Robert Phillips3b3307f2017-05-24 07:44:02 -0400111 sk_sp<GrSurface> tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomon1c80e992018-01-29 09:50:47 -0500112 bool ict = caps->isConfigTexturable(desc.fConfig);
113 REPORTER_ASSERT(reporter, SkToBool(tex) == ict,
114 "config:%d, tex:%d, isConfigTexturable:%d", config, SkToBool(tex), ict);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400115
Greg Daniel4065d452018-11-16 15:43:41 -0500116 GrSRGBEncoded srgbEncoded = GrSRGBEncoded::kNo;
117 GrColorType colorType = GrPixelConfigToColorTypeAndEncoding(config, &srgbEncoded);
118 const GrBackendFormat format =
119 caps->getBackendFormatFromGrColorType(colorType, srgbEncoded);
120
Brian Salomon2a4f9832018-03-03 22:43:43 -0500121 sk_sp<GrTextureProxy> proxy =
Greg Daniel4065d452018-11-16 15:43:41 -0500122 proxyProvider->createMipMapProxy(format, desc, origin, SkBudgeted::kNo);
Brian Osman48c99192017-06-02 08:45:06 -0400123 REPORTER_ASSERT(reporter, SkToBool(proxy.get()) ==
124 (caps->isConfigTexturable(desc.fConfig) &&
Brian Salomon57111332018-02-05 15:55:54 -0500125 caps->mipMapSupport()));
Brian Osman48c99192017-06-02 08:45:06 -0400126
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400127 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillips3b3307f2017-05-24 07:44:02 -0400128 tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500129 bool isRenderable = caps->isConfigRenderable(config);
130 REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
131 "config:%d, tex:%d, isRenderable:%d", config, SkToBool(tex),
132 isRenderable);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400133
Brian Salomonbdecacf2018-02-02 20:32:49 -0500134 desc.fSampleCnt = 2;
Robert Phillips3b3307f2017-05-24 07:44:02 -0400135 tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500136 isRenderable = SkToBool(caps->getRenderTargetSampleCount(2, config));
137 REPORTER_ASSERT(reporter, SkToBool(tex) == isRenderable,
138 "config:%d, tex:%d, isRenderable:%d", config, SkToBool(tex),
139 isRenderable);
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400140 }
141 }
142}
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400143
Brian Salomond17b4a62017-05-23 16:53:47 -0400144#include "GrDrawingManager.h"
145#include "GrSurfaceProxy.h"
146#include "GrTextureContext.h"
147
148DEF_GPUTEST_FOR_RENDERING_CONTEXTS(InitialTextureClear, reporter, context_info) {
149 static constexpr int kSize = 100;
150 GrSurfaceDesc desc;
151 desc.fWidth = desc.fHeight = kSize;
152 std::unique_ptr<uint32_t[]> data(new uint32_t[kSize * kSize]);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500153
Brian Salomond17b4a62017-05-23 16:53:47 -0400154 GrContext* context = context_info.grContext();
Greg Daniel4065d452018-11-16 15:43:41 -0500155 const GrCaps* caps = context->contextPriv().caps();
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500156 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
157
Brian Salomond17b4a62017-05-23 16:53:47 -0400158 for (int c = 0; c <= kLast_GrPixelConfig; ++c) {
159 desc.fConfig = static_cast<GrPixelConfig>(c);
Greg Daniel4065d452018-11-16 15:43:41 -0500160 if (!caps->isConfigTexturable(desc.fConfig)) {
Brian Salomond17b4a62017-05-23 16:53:47 -0400161 continue;
162 }
163 desc.fFlags = kPerformInitialClear_GrSurfaceFlag;
164 for (bool rt : {false, true}) {
Greg Daniel4065d452018-11-16 15:43:41 -0500165 if (rt && !caps->isConfigRenderable(desc.fConfig)) {
Brian Salomond17b4a62017-05-23 16:53:47 -0400166 continue;
167 }
168 desc.fFlags |= rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
Greg Daniel90f28ec2017-09-25 12:26:58 -0400169 for (GrSurfaceOrigin origin :
170 {kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin}) {
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500171 for (auto fit : { SkBackingFit::kApprox, SkBackingFit::kExact }) {
Greg Daniel90f28ec2017-09-25 12:26:58 -0400172 // Try directly creating the texture.
173 // Do this twice in an attempt to hit the cache on the second time through.
174 for (int i = 0; i < 2; ++i) {
Chris Daltond004e0b2018-09-27 09:28:03 -0600175 auto proxy = proxyProvider->testingOnly_createInstantiatedProxy(
Brian Salomon2a4f9832018-03-03 22:43:43 -0500176 desc, origin, fit, SkBudgeted::kYes);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500177 if (!proxy) {
Greg Daniel90f28ec2017-09-25 12:26:58 -0400178 continue;
179 }
Greg Daniel90f28ec2017-09-25 12:26:58 -0400180 auto texCtx = context->contextPriv().makeWrappedSurfaceContext(
Brian Osman9aa30c62018-07-02 15:21:46 -0400181 std::move(proxy));
Greg Daniel90f28ec2017-09-25 12:26:58 -0400182 SkImageInfo info = SkImageInfo::Make(
183 kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
184 memset(data.get(), 0xAB, kSize * kSize * sizeof(uint32_t));
185 if (texCtx->readPixels(info, data.get(), 0, 0, 0)) {
186 uint32_t cmp = GrPixelConfigIsOpaque(desc.fConfig) ? 0xFF000000 : 0;
187 for (int i = 0; i < kSize * kSize; ++i) {
188 if (cmp != data.get()[i]) {
189 ERRORF(reporter, "Failed on config %d", desc.fConfig);
190 break;
Brian Salomond17b4a62017-05-23 16:53:47 -0400191 }
192 }
Brian Salomond17b4a62017-05-23 16:53:47 -0400193 }
Greg Daniel90f28ec2017-09-25 12:26:58 -0400194 memset(data.get(), 0xBC, kSize * kSize * sizeof(uint32_t));
195 // Here we overwrite the texture so that the second time through we
196 // test against recycling without reclearing.
197 if (0 == i) {
198 texCtx->writePixels(info, data.get(), 0, 0, 0);
Greg Daniel52cb5fe2017-09-05 15:45:15 -0400199 }
Greg Daniel52cb5fe2017-09-05 15:45:15 -0400200 }
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500201 context->contextPriv().purgeAllUnlockedResources_ForTesting();
Greg Daniel90f28ec2017-09-25 12:26:58 -0400202
Greg Daniel4065d452018-11-16 15:43:41 -0500203 GrSRGBEncoded srgbEncoded = GrSRGBEncoded::kNo;
204 GrColorType colorType = GrPixelConfigToColorTypeAndEncoding(desc.fConfig,
205 &srgbEncoded);
206 const GrBackendFormat format =
207 caps->getBackendFormatFromGrColorType(colorType, srgbEncoded);
208
Greg Daniel90f28ec2017-09-25 12:26:58 -0400209 // Try creating the texture as a deferred proxy.
210 for (int i = 0; i < 2; ++i) {
211 auto surfCtx = context->contextPriv().makeDeferredSurfaceContext(
Greg Daniel4065d452018-11-16 15:43:41 -0500212 format, desc, origin, GrMipMapped::kNo, fit, SkBudgeted::kYes);
Greg Daniel90f28ec2017-09-25 12:26:58 -0400213 if (!surfCtx) {
214 continue;
215 }
216 SkImageInfo info = SkImageInfo::Make(
217 kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
218 memset(data.get(), 0xAB, kSize * kSize * sizeof(uint32_t));
219 if (surfCtx->readPixels(info, data.get(), 0, 0, 0)) {
220 uint32_t cmp = GrPixelConfigIsOpaque(desc.fConfig) ? 0xFF000000 : 0;
221 for (int i = 0; i < kSize * kSize; ++i) {
222 if (cmp != data.get()[i]) {
223 ERRORF(reporter, "Failed on config %d", desc.fConfig);
224 break;
225 }
226 }
227 }
228 // Here we overwrite the texture so that the second time through we
229 // test against recycling without reclearing.
230 if (0 == i) {
231 surfCtx->writePixels(info, data.get(), 0, 0, 0);
232 }
233 }
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500234 context->contextPriv().purgeAllUnlockedResources_ForTesting();
Brian Salomond17b4a62017-05-23 16:53:47 -0400235 }
236 }
237 }
238 }
239}
Brian Salomonc67c31c2018-12-06 10:00:03 -0500240
241DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadOnlyTexture, reporter, context_info) {
242 auto fillPixels = [](const SkPixmap* p, const std::function<uint32_t(int x, int y)>& f) {
243 for (int y = 0; y < p->height(); ++y) {
244 for (int x = 0; x < p->width(); ++x) {
245 *p->writable_addr32(x, y) = f(x, y);
246 }
247 }
248 };
249
250 auto comparePixels = [](const SkPixmap& p1, const SkPixmap& p2, skiatest::Reporter* reporter) {
251 SkASSERT(p1.info() == p2.info());
252 for (int y = 0; y < p1.height(); ++y) {
253 for (int x = 0; x < p1.width(); ++x) {
254 REPORTER_ASSERT(reporter, p1.getColor(x, y) == p2.getColor(x, y));
255 if (p1.getColor(x, y) != p2.getColor(x, y)) {
256 return;
257 }
258 }
259 }
260 };
261
262 static constexpr int kSize = 100;
263 SkAutoPixmapStorage pixels;
264 pixels.alloc(SkImageInfo::Make(kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType));
265 fillPixels(&pixels,
266 [](int x, int y) { return (0xFFU << 24) | (x << 16) | (y << 8) | uint8_t(x * y); });
267
268 GrContext* context = context_info.grContext();
269 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
270
271 // We test both kRW in addition to kRead mostly to ensure that the calls are structured such
272 // that they'd succeed if the texture wasn't kRead. We want to be sure we're failing with
273 // kRead for the right reason.
274 for (auto ioType : {kRead_GrIOType, kRW_GrIOType}) {
275 auto backendTex = context->contextPriv().getGpu()->createTestingOnlyBackendTexture(
276 pixels.addr(), kSize, kSize, kRGBA_8888_SkColorType, true, GrMipMapped::kNo);
277 auto proxy = proxyProvider->wrapBackendTexture(backendTex, kTopLeft_GrSurfaceOrigin,
278 kBorrow_GrWrapOwnership, ioType);
279 auto surfContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
280
281 // Read pixels should work with a read-only texture.
282 SkAutoPixmapStorage read;
283 read.alloc(pixels.info());
284 auto readResult = surfContext->readPixels(pixels.info(), read.writable_addr(), 0, 0, 0);
285 REPORTER_ASSERT(reporter, readResult);
286 if (readResult) {
287 comparePixels(pixels, read, reporter);
288 }
289
290 // Write pixels should not work with a read-only texture.
291 SkAutoPixmapStorage write;
292 write.alloc(pixels.info());
293 fillPixels(&write, [&pixels](int x, int y) { return ~*pixels.addr32(); });
294 auto writeResult = surfContext->writePixels(pixels.info(), pixels.addr(), 0, 0, 0);
295 REPORTER_ASSERT(reporter, writeResult == (ioType == kRW_GrIOType));
296 // Try the low level write.
297 context->flush();
298 auto gpuWriteResult = context->contextPriv().getGpu()->writePixels(
299 proxy->peekTexture(), 0, 0, kSize, kSize, GrColorType::kRGBA_8888, write.addr32(),
300 0);
301 REPORTER_ASSERT(reporter, gpuWriteResult == (ioType == kRW_GrIOType));
302
303 // Copies should not work with a read-only texture
304 auto copySrc = proxyProvider->createTextureProxy(
305 SkImage::MakeFromRaster(write, nullptr, nullptr), kNone_GrSurfaceFlags, 1,
306 SkBudgeted::kYes, SkBackingFit::kExact);
307 REPORTER_ASSERT(reporter, copySrc);
308 auto copyResult = surfContext->copy(copySrc.get());
309 REPORTER_ASSERT(reporter, copyResult == (ioType == kRW_GrIOType));
310 // Try the low level copy.
311 context->flush();
312 auto gpuCopyResult = context->contextPriv().getGpu()->copySurface(
313 proxy->peekTexture(), kTopLeft_GrSurfaceOrigin, copySrc->peekTexture(),
314 kTopLeft_GrSurfaceOrigin, SkIRect::MakeWH(kSize, kSize), {0, 0});
315 REPORTER_ASSERT(reporter, gpuCopyResult == (ioType == kRW_GrIOType));
316
317 // Mip regen should not work with a read only texture.
318 if (context->contextPriv().caps()->mipMapSupport()) {
319 backendTex = context->contextPriv().getGpu()->createTestingOnlyBackendTexture(
320 nullptr, kSize, kSize, kRGBA_8888_SkColorType, true, GrMipMapped::kYes);
321 proxy = proxyProvider->wrapBackendTexture(backendTex, kTopLeft_GrSurfaceOrigin,
322 kBorrow_GrWrapOwnership, ioType);
323 context->flush();
324 proxy->peekTexture()->texturePriv().markMipMapsDirty(); // avoids assert in GrGpu.
325 auto regenResult =
326 context->contextPriv().getGpu()->regenerateMipMapLevels(proxy->peekTexture());
327 REPORTER_ASSERT(reporter, regenResult == (ioType == kRW_GrIOType));
328 }
329 }
330}