blob: 64e42c6f97b79f926e2cb18a2e29101ba75f10e8 [file] [log] [blame]
Robert Phillips0c6daf02019-05-16 12:43:11 -04001/*
2 * Copyright 2019 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
Robert Phillipse19babf2020-04-06 13:57:30 -04008#include "include/core/SkCanvas.h"
Mike Kleinfe0aeb32019-05-20 10:55:11 -05009#include "include/core/SkSurface.h"
Robert Phillips02dc0302019-07-02 17:58:27 -040010#include "include/core/SkSurfaceCharacterization.h"
Robert Phillips6d344c32020-07-06 10:56:46 -040011#include "include/gpu/GrDirectContext.h"
Robert Phillips459b2952019-05-23 09:38:27 -040012#include "src/core/SkAutoPixmapStorage.h"
Mike Klein4b432fa2019-06-06 11:44:05 -050013#include "src/gpu/GrContextPriv.h"
Robert Phillipsefb9f142019-05-17 14:19:44 -040014#include "src/image/SkImage_Base.h"
Robert Phillips0c6daf02019-05-16 12:43:11 -040015#include "tests/Test.h"
Robert Phillipse3b6fe42019-09-11 11:26:46 -040016#include "tests/TestUtils.h"
17#include "tools/ToolUtils.h"
Robert Phillips0c6daf02019-05-16 12:43:11 -040018
Robert Phillips27eb5252019-06-03 12:59:40 -040019#ifdef SK_GL
Robert Phillipsee946932019-12-18 11:16:17 -050020#include "src/gpu/gl/GrGLCaps.h"
21#include "src/gpu/gl/GrGLDefines.h"
Robert Phillips27eb5252019-06-03 12:59:40 -040022#include "src/gpu/gl/GrGLGpu.h"
23#include "src/gpu/gl/GrGLUtil.h"
24#endif
25
Robert Phillips7f367982019-09-26 14:01:36 -040026#ifdef SK_METAL
27#include "include/gpu/mtl/GrMtlTypes.h"
28#include "src/gpu/mtl/GrMtlCppUtil.h"
29#endif
30
Robert Phillipsfe4b4812020-07-17 14:15:51 -040031static void wait_on_backend_work_to_finish(GrDirectContext* dContext, bool* finishedCreate) {
32 dContext->submit();
Greg Danielc1ad77c2020-05-06 11:40:03 -040033 while (finishedCreate && !(*finishedCreate)) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -040034 dContext->checkAsyncWorkCompletion();
Greg Danielc1ad77c2020-05-06 11:40:03 -040035 }
36 if (finishedCreate) {
37 // The same boolean (pointed to by finishedCreate) is often used multiply and sequentially
38 // throughout our tests to create different backend textures.
39 // Reset it here so that it can be use to signal a future backend texture's creation
40 *finishedCreate = false;
41 }
Greg Danielb2365d82020-05-13 15:32:04 -040042}
43
Robert Phillipsfe4b4812020-07-17 14:15:51 -040044static void delete_backend_texture(GrDirectContext* dContext,
45 const GrBackendTexture& backendTexture,
Greg Danielb2365d82020-05-13 15:32:04 -040046 bool* finishedCreate) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -040047 wait_on_backend_work_to_finish(dContext, finishedCreate);
48 dContext->deleteBackendTexture(backendTexture);
Greg Danielc1ad77c2020-05-06 11:40:03 -040049}
50
Greg Danielb2365d82020-05-13 15:32:04 -040051static void mark_signaled(void* context) {
52 *(bool*)context = true;
53}
54
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -040055// Test wrapping of GrBackendObjects in SkSurfaces and SkImages (non-static since used in Mtl test)
Robert Phillipsfe4b4812020-07-17 14:15:51 -040056void test_wrapping(GrDirectContext* dContext,
57 skiatest::Reporter* reporter,
58 std::function<GrBackendTexture (GrDirectContext*,
Robert Phillipsb04b6942019-05-21 17:24:31 -040059 GrMipMapped,
60 GrRenderable)> create,
Robert Phillipsfe4b4812020-07-17 14:15:51 -040061 GrColorType grColorType,
62 GrMipMapped mipMapped,
63 GrRenderable renderable,
Greg Danielc1ad77c2020-05-06 11:40:03 -040064 bool* finishedBECreate) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -040065 GrResourceCache* cache = dContext->priv().getResourceCache();
Robert Phillips0c6daf02019-05-16 12:43:11 -040066
67 const int initialCount = cache->getResourceCount();
68
Robert Phillipsfe4b4812020-07-17 14:15:51 -040069 GrBackendTexture backendTex = create(dContext, mipMapped, renderable);
Robert Phillipsefb9f142019-05-17 14:19:44 -040070 if (!backendTex.isValid()) {
Robert Phillipsb7f95d12019-07-26 11:13:19 -040071 ERRORF(reporter, "Couldn't create backendTexture for grColorType %d renderable %s\n",
72 grColorType,
Robert Phillips0c6daf02019-05-16 12:43:11 -040073 GrRenderable::kYes == renderable ? "yes" : "no");
74 return;
75 }
Robert Phillipsb04b6942019-05-21 17:24:31 -040076
Robert Phillips0c6daf02019-05-16 12:43:11 -040077 // Skia proper should know nothing about the new backend object
78 REPORTER_ASSERT(reporter, initialCount == cache->getResourceCount());
79
Robert Phillipsb7f95d12019-07-26 11:13:19 -040080 SkColorType skColorType = GrColorTypeToSkColorType(grColorType);
81
82 // Wrapping a backendTexture in an image requires an SkColorType
83 if (kUnknown_SkColorType == skColorType) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -040084 delete_backend_texture(dContext, backendTex, finishedBECreate);
Robert Phillipsb04b6942019-05-21 17:24:31 -040085 return;
86 }
87
Robert Phillipsfe4b4812020-07-17 14:15:51 -040088 if (GrRenderable::kYes == renderable && dContext->colorTypeSupportedAsSurface(skColorType)) {
89 sk_sp<SkSurface> surf = SkSurface::MakeFromBackendTexture(dContext,
Robert Phillips459b2952019-05-23 09:38:27 -040090 backendTex,
91 kTopLeft_GrSurfaceOrigin,
92 0,
Robert Phillipsb7f95d12019-07-26 11:13:19 -040093 skColorType,
Robert Phillips459b2952019-05-23 09:38:27 -040094 nullptr, nullptr);
Robert Phillipsb04b6942019-05-21 17:24:31 -040095 if (!surf) {
Robert Phillips9a30ee02020-04-29 08:58:39 -040096 ERRORF(reporter, "Couldn't make surface from backendTexture for %s\n",
97 ToolUtils::colortype_name(skColorType));
Robert Phillipsb04b6942019-05-21 17:24:31 -040098 } else {
99 REPORTER_ASSERT(reporter, initialCount+1 == cache->getResourceCount());
Robert Phillips0c6daf02019-05-16 12:43:11 -0400100 }
Robert Phillipsb04b6942019-05-21 17:24:31 -0400101 }
Robert Phillips0c6daf02019-05-16 12:43:11 -0400102
Robert Phillipsb04b6942019-05-21 17:24:31 -0400103 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400104 sk_sp<SkImage> img = SkImage::MakeFromTexture(dContext,
Robert Phillips459b2952019-05-23 09:38:27 -0400105 backendTex,
106 kTopLeft_GrSurfaceOrigin,
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400107 skColorType,
Robert Phillips459b2952019-05-23 09:38:27 -0400108 kPremul_SkAlphaType,
109 nullptr);
Robert Phillipsb04b6942019-05-21 17:24:31 -0400110 if (!img) {
Robert Phillips9a30ee02020-04-29 08:58:39 -0400111 ERRORF(reporter, "Couldn't make image from backendTexture for %s\n",
112 ToolUtils::colortype_name(skColorType));
Robert Phillipsb04b6942019-05-21 17:24:31 -0400113 } else {
114 SkImage_Base* ib = as_IB(img);
Robert Phillipsefb9f142019-05-17 14:19:44 -0400115
Robert Phillipsb04b6942019-05-21 17:24:31 -0400116 GrTextureProxy* proxy = ib->peekProxy();
117 REPORTER_ASSERT(reporter, proxy);
Robert Phillipsefb9f142019-05-17 14:19:44 -0400118
Robert Phillipsb04b6942019-05-21 17:24:31 -0400119 REPORTER_ASSERT(reporter, mipMapped == proxy->proxyMipMapped());
120 REPORTER_ASSERT(reporter, proxy->isInstantiated());
121 REPORTER_ASSERT(reporter, mipMapped == proxy->mipMapped());
Robert Phillipsefb9f142019-05-17 14:19:44 -0400122
Robert Phillipsb04b6942019-05-21 17:24:31 -0400123 REPORTER_ASSERT(reporter, initialCount+1 == cache->getResourceCount());
Robert Phillips0c6daf02019-05-16 12:43:11 -0400124 }
125 }
126
127 REPORTER_ASSERT(reporter, initialCount == cache->getResourceCount());
128
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400129 delete_backend_texture(dContext, backendTex, finishedBECreate);
Robert Phillips0c6daf02019-05-16 12:43:11 -0400130}
131
Robert Phillips9a30ee02020-04-29 08:58:39 -0400132static bool isBGRA8(const GrBackendFormat& format) {
Robert Phillips7f367982019-09-26 14:01:36 -0400133 switch (format.backend()) {
Robert Phillips7f367982019-09-26 14:01:36 -0400134 case GrBackendApi::kOpenGL:
135#ifdef SK_GL
136 return format.asGLFormat() == GrGLFormat::kBGRA8;
137#else
138 return false;
139#endif
140 case GrBackendApi::kVulkan: {
141#ifdef SK_VULKAN
142 VkFormat vkFormat;
143 format.asVkFormat(&vkFormat);
144 return vkFormat == VK_FORMAT_B8G8R8A8_UNORM;
145#else
146 return false;
147#endif
148 }
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500149 case GrBackendApi::kMetal:
150#ifdef SK_METAL
Robert Phillips9a30ee02020-04-29 08:58:39 -0400151 return GrMtlFormatIsBGRA8(format.asMtlFormat());
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500152#else
153 return false;
154#endif
155 case GrBackendApi::kDirect3D:
156#ifdef SK_DIRECT3D
157 return false; // TODO
158#else
159 return false;
160#endif
161 case GrBackendApi::kDawn:
Stephen White36248742020-06-10 22:24:57 -0400162#ifdef SK_DAWN
163 wgpu::TextureFormat dawnFormat;
164 format.asDawnFormat(&dawnFormat);
165 return dawnFormat == wgpu::TextureFormat::BGRA8Unorm;
166#else
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500167 return false;
Stephen White36248742020-06-10 22:24:57 -0400168#endif
Robert Phillipsa27d6252019-12-10 14:48:36 -0500169 case GrBackendApi::kMock: {
170 SkImage::CompressionType compression = format.asMockCompressionType();
171 if (compression != SkImage::CompressionType::kNone) {
172 return false; // No compressed formats are BGRA
173 }
174
Robert Phillips7f367982019-09-26 14:01:36 -0400175 return format.asMockColorType() == GrColorType::kBGRA_8888;
Robert Phillipsa27d6252019-12-10 14:48:36 -0500176 }
Robert Phillips7f367982019-09-26 14:01:36 -0400177 }
178 SkUNREACHABLE;
179}
180
181static bool isRGB(const GrBackendFormat& format) {
182 switch (format.backend()) {
Robert Phillips7f367982019-09-26 14:01:36 -0400183 case GrBackendApi::kOpenGL:
184#ifdef SK_GL
185 return format.asGLFormat() == GrGLFormat::kRGB8;
186#else
187 return false;
188#endif
189 case GrBackendApi::kVulkan: {
190#ifdef SK_VULKAN
191 VkFormat vkFormat;
192 format.asVkFormat(&vkFormat);
193 return vkFormat == VK_FORMAT_R8G8B8_UNORM;
194#else
195 return false;
196#endif
197 }
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500198 case GrBackendApi::kMetal:
199 return false; // Metal doesn't even pretend to support this
200 case GrBackendApi::kDirect3D:
201 return false; // Not supported in Direct3D 12
202 case GrBackendApi::kDawn:
203 return false;
Robert Phillips7f367982019-09-26 14:01:36 -0400204 case GrBackendApi::kMock:
205 return false; // No GrColorType::kRGB_888
206 }
207 SkUNREACHABLE;
208}
209
Robert Phillipse3b6fe42019-09-11 11:26:46 -0400210static void check_solid_pixmap(skiatest::Reporter* reporter,
211 const SkColor4f& expected, const SkPixmap& actual,
Robert Phillips7f367982019-09-26 14:01:36 -0400212 SkColorType ct, const char* label1, const char* label2) {
Robert Phillipse3b6fe42019-09-11 11:26:46 -0400213 // we need 0.001f across the board just for noise
214 // we need 0.01f across the board for 1010102
Robert Phillips7f367982019-09-26 14:01:36 -0400215 const float tols[4] = { 0.01f, 0.01f, 0.01f, 0.01f };
Robert Phillips27eb5252019-06-03 12:59:40 -0400216
Robert Phillipse3b6fe42019-09-11 11:26:46 -0400217 auto error = std::function<ComparePixmapsErrorReporter>(
Robert Phillips7f367982019-09-26 14:01:36 -0400218 [reporter, ct, label1, label2](int x, int y, const float diffs[4]) {
Robert Phillipse3b6fe42019-09-11 11:26:46 -0400219 SkASSERT(x >= 0 && y >= 0);
Robert Phillips7f367982019-09-26 14:01:36 -0400220 ERRORF(reporter, "%s %s %s - mismatch at %d, %d (%f, %f, %f %f)",
221 ToolUtils::colortype_name(ct), label1, label2, x, y,
Robert Phillipse3b6fe42019-09-11 11:26:46 -0400222 diffs[0], diffs[1], diffs[2], diffs[3]);
223 });
224
Brian Salomon28a8f282019-10-24 20:07:39 -0400225 CheckSolidPixels(expected, actual, tols, error);
Robert Phillips27eb5252019-06-03 12:59:40 -0400226}
227
Robert Phillips7f367982019-09-26 14:01:36 -0400228// What would raster do?
Robert Phillipse3b6fe42019-09-11 11:26:46 -0400229static SkColor4f get_expected_color(SkColor4f orig, SkColorType ct) {
Robert Phillips7f367982019-09-26 14:01:36 -0400230 SkAlphaType at = SkColorTypeIsAlwaysOpaque(ct) ? kOpaque_SkAlphaType
231 : kPremul_SkAlphaType;
Robert Phillipse3b6fe42019-09-11 11:26:46 -0400232
Robert Phillips7f367982019-09-26 14:01:36 -0400233 SkImageInfo ii = SkImageInfo::Make(2, 2, ct, at);
234 SkAutoPixmapStorage pm;
235 pm.alloc(ii);
236 pm.erase(orig);
237 SkColor tmp = pm.getColor(0, 0);
238 return SkColor4f::FromColor(tmp);
Robert Phillips459b2952019-05-23 09:38:27 -0400239}
240
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400241static void check_mipmaps(GrDirectContext*, const GrBackendTexture&,
242 SkColorType, const SkColor4f expectedColors[6],
243 skiatest::Reporter*, const char* label);
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400244
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400245static void check_base_readbacks(GrDirectContext* dContext, const GrBackendTexture& backendTex,
Robert Phillips0ee10342019-09-25 09:55:16 -0400246 SkColorType skColorType, GrRenderable renderable,
Robert Phillips7f367982019-09-26 14:01:36 -0400247 const SkColor4f& color, skiatest::Reporter* reporter,
248 const char* label) {
249 if (isRGB(backendTex.getBackendFormat())) {
250 // readPixels is busted for the RGB backend format (skbug.com/8862)
251 // TODO: add a GrColorType::kRGB_888 to fix the situation
252 return;
253 }
Robert Phillips0ee10342019-09-25 09:55:16 -0400254
255 SkAlphaType at = SkColorTypeIsAlwaysOpaque(skColorType) ? kOpaque_SkAlphaType
256 : kPremul_SkAlphaType;
257
258 SkColor4f expectedColor = get_expected_color(color, skColorType);
259
260 SkAutoPixmapStorage actual;
261
262 {
263 SkImageInfo readBackII = SkImageInfo::Make(32, 32, kRGBA_8888_SkColorType,
Robert Phillips7f367982019-09-26 14:01:36 -0400264 kUnpremul_SkAlphaType);
Robert Phillips0ee10342019-09-25 09:55:16 -0400265
266 SkAssertResult(actual.tryAlloc(readBackII));
267 }
268
Robert Phillips0ee10342019-09-25 09:55:16 -0400269 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400270 sk_sp<SkImage> img = SkImage::MakeFromTexture(dContext,
Robert Phillips0ee10342019-09-25 09:55:16 -0400271 backendTex,
272 kTopLeft_GrSurfaceOrigin,
273 skColorType,
274 at,
275 nullptr);
276 if (img) {
277 actual.erase(SkColors::kTransparent);
278 bool result = img->readPixels(actual, 0, 0);
279 if (!result) {
280 // TODO: we need a better way to tell a priori if readPixels will work for an
281 // arbitrary colorType
282#if 0
283 ERRORF(reporter, "Couldn't readback from SkImage for colorType: %d\n", colorType);
284#endif
285 } else {
286 check_solid_pixmap(reporter, expectedColor, actual, skColorType,
Robert Phillips7f367982019-09-26 14:01:36 -0400287 label, "SkImage::readPixels");
Robert Phillips0ee10342019-09-25 09:55:16 -0400288 }
289 }
290 }
Robert Phillips7f367982019-09-26 14:01:36 -0400291
292 // This will mark any mipmaps as dirty (bc that is what we do when we wrap a renderable
293 // backend texture) so it must be done last!
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400294 if (GrRenderable::kYes == renderable && dContext->colorTypeSupportedAsSurface(skColorType)) {
295 sk_sp<SkSurface> surf = SkSurface::MakeFromBackendTexture(dContext,
Robert Phillips7f367982019-09-26 14:01:36 -0400296 backendTex,
297 kTopLeft_GrSurfaceOrigin,
298 0,
299 skColorType,
300 nullptr, nullptr);
301 if (surf) {
302 actual.erase(SkColors::kTransparent);
303 bool result = surf->readPixels(actual, 0, 0);
304 REPORTER_ASSERT(reporter, result);
305
306 check_solid_pixmap(reporter, expectedColor, actual, skColorType,
307 label, "SkSurface::readPixels");
308 }
309 }
Robert Phillips0ee10342019-09-25 09:55:16 -0400310}
311
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400312// Test initialization of GrBackendObjects to a specific color (non-static since used in Mtl test)
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400313void test_color_init(GrDirectContext* dContext,
314 skiatest::Reporter* reporter,
315 std::function<GrBackendTexture (GrDirectContext*,
Robert Phillips459b2952019-05-23 09:38:27 -0400316 const SkColor4f&,
317 GrMipMapped,
318 GrRenderable)> create,
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400319 GrColorType grColorType,
320 const SkColor4f& color,
321 GrMipMapped mipMapped,
322 GrRenderable renderable,
323 bool* finishedBECreate) {
324 GrBackendTexture backendTex = create(dContext, color, mipMapped, renderable);
Robert Phillips459b2952019-05-23 09:38:27 -0400325 if (!backendTex.isValid()) {
326 // errors here should be reported by the test_wrapping test
327 return;
328 }
329
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400330 SkColorType skColorType = GrColorTypeToSkColorType(grColorType);
331
332 // Can't wrap backend textures in images and surfaces w/o an SkColorType
333 if (kUnknown_SkColorType == skColorType) {
Robert Phillips459b2952019-05-23 09:38:27 -0400334 // TODO: burrow in and scrappily check that data was uploaded!
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400335 delete_backend_texture(dContext, backendTex, finishedBECreate);
Robert Phillips459b2952019-05-23 09:38:27 -0400336 return;
337 }
338
Greg Danielb2365d82020-05-13 15:32:04 -0400339 auto checkBackendTexture = [&](const SkColor4f& testColor) {
340 if (mipMapped == GrMipMapped::kYes) {
341 SkColor4f expectedColor = get_expected_color(testColor, skColorType);
342 SkColor4f expectedColors[6] = {expectedColor, expectedColor, expectedColor,
343 expectedColor, expectedColor, expectedColor};
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400344 check_mipmaps(dContext, backendTex, skColorType, expectedColors,
345 reporter, "colorinit");
Greg Danielb2365d82020-05-13 15:32:04 -0400346 }
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400347
Greg Danielb2365d82020-05-13 15:32:04 -0400348 // The last step in this test will dirty the mipmaps so do it last
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400349 check_base_readbacks(dContext, backendTex, skColorType, renderable, testColor,
350 reporter, "colorinit");
Greg Danielb2365d82020-05-13 15:32:04 -0400351 };
352
353 checkBackendTexture(color);
354
355 // Make sure the initial create work has finished so we can test the update independently.
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400356 wait_on_backend_work_to_finish(dContext, finishedBECreate);
Greg Danielb2365d82020-05-13 15:32:04 -0400357
358 SkColor4f newColor = {color.fB , color.fR, color.fG, color.fA };
359
360 // Reupload the new data and make sure everything still works. We test with an SkColorType so
361 // we may actually swizzle the input during the create path. The update does not do any swizzle
362 // of the passed in color. So we manually do it here so we get the same expected results.
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400363 SkColor4f swizzledColor = dContext->priv().caps()->getWriteSwizzle(
Greg Danielb2365d82020-05-13 15:32:04 -0400364 backendTex.getBackendFormat(), grColorType).applyTo(newColor);
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400365 dContext->updateBackendTexture(backendTex, swizzledColor, mark_signaled, finishedBECreate);
Greg Danielb2365d82020-05-13 15:32:04 -0400366
367 checkBackendTexture(newColor);
368
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400369 delete_backend_texture(dContext, backendTex, finishedBECreate);
Robert Phillips459b2952019-05-23 09:38:27 -0400370}
371
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400372// Draw the backend texture (wrapped in an SkImage) into an RGBA surface, attempting to access
373// all the mipMap levels.
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400374static void check_mipmaps(GrDirectContext* dContext, const GrBackendTexture& backendTex,
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400375 SkColorType skColorType, const SkColor4f expectedColors[6],
Robert Phillips7f367982019-09-26 14:01:36 -0400376 skiatest::Reporter* reporter, const char* label) {
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400377
378#ifdef SK_GL
379 // skbug.com/9141 (RGBA_F32 mipmaps appear to be broken on some Mali devices)
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400380 if (GrBackendApi::kOpenGL == dContext->backend()) {
381 GrGLGpu* glGPU = static_cast<GrGLGpu*>(dContext->priv().getGpu());
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400382
383 if (kRGBA_F32_SkColorType == skColorType &&
384 kGLES_GrGLStandard == glGPU->ctxInfo().standard()) {
385 return;
386 }
387 }
388#endif
389
Robert Phillips7f367982019-09-26 14:01:36 -0400390 if (isRGB(backendTex.getBackendFormat())) {
391 // readPixels is busted for the RGB backend format (skbug.com/8862)
392 // TODO: add a GrColorType::kRGB_888 to fix the situation
393 return;
394 }
395
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400396 SkAlphaType at = SkColorTypeIsAlwaysOpaque(skColorType) ? kOpaque_SkAlphaType
397 : kPremul_SkAlphaType;
Robert Phillips7f367982019-09-26 14:01:36 -0400398
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400399 sk_sp<SkImage> img = SkImage::MakeFromTexture(dContext,
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400400 backendTex,
401 kTopLeft_GrSurfaceOrigin,
402 skColorType,
403 at,
404 nullptr);
405 if (!img) {
406 return;
407 }
408
Robert Phillips7f367982019-09-26 14:01:36 -0400409 SkImageInfo readbackSurfaceII = SkImageInfo::Make(32, 32, kRGBA_8888_SkColorType,
410 kPremul_SkAlphaType);
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400411
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400412 sk_sp<SkSurface> surf = SkSurface::MakeRenderTarget(dContext,
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400413 SkBudgeted::kNo,
Robert Phillips7f367982019-09-26 14:01:36 -0400414 readbackSurfaceII, 1,
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400415 kTopLeft_GrSurfaceOrigin,
416 nullptr);
417 if (!surf) {
418 return;
419 }
420
421 SkCanvas* canvas = surf->getCanvas();
422
423 SkPaint p;
424 p.setFilterQuality(kHigh_SkFilterQuality);
425
426 int numMipLevels = 6;
427
428 for (int i = 0, rectSize = 32; i < numMipLevels; ++i, rectSize /= 2) {
429 SkASSERT(rectSize >= 1);
430
431 SkRect r = SkRect::MakeWH(rectSize, rectSize);
432 canvas->clear(SK_ColorTRANSPARENT);
433 canvas->drawImageRect(img, r, &p);
434
435 SkImageInfo readbackII = SkImageInfo::Make(rectSize, rectSize,
436 kRGBA_8888_SkColorType,
Robert Phillips7f367982019-09-26 14:01:36 -0400437 kUnpremul_SkAlphaType);
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400438 SkAutoPixmapStorage actual2;
439 SkAssertResult(actual2.tryAlloc(readbackII));
440 actual2.erase(SkColors::kTransparent);
441
442 bool result = surf->readPixels(actual2, 0, 0);
443 REPORTER_ASSERT(reporter, result);
444
Robert Phillipsee946932019-12-18 11:16:17 -0500445 SkString str;
446 str.appendf("mip-level %d", i);
447
Robert Phillips7f367982019-09-26 14:01:36 -0400448 check_solid_pixmap(reporter, expectedColors[i], actual2, skColorType,
Robert Phillipsee946932019-12-18 11:16:17 -0500449 label, str.c_str());
Robert Phillipsc1dbb4b2019-09-24 16:32:35 -0400450 }
451}
452
Robert Phillips7f367982019-09-26 14:01:36 -0400453static int make_pixmaps(SkColorType skColorType, GrMipMapped mipMapped,
454 const SkColor4f colors[6], SkAutoPixmapStorage pixmaps[6]) {
455 int levelSize = 32;
456 int numMipLevels = mipMapped == GrMipMapped::kYes ? 6 : 1;
457 SkAlphaType at = SkColorTypeIsAlwaysOpaque(skColorType) ? kOpaque_SkAlphaType
458 : kPremul_SkAlphaType;
459 for (int level = 0; level < numMipLevels; ++level) {
460 SkImageInfo ii = SkImageInfo::Make(levelSize, levelSize, skColorType, at);
461 pixmaps[level].alloc(ii);
462 pixmaps[level].erase(colors[level]);
463 levelSize /= 2;
464 }
465 return numMipLevels;
466}
467
468// Test initialization of GrBackendObjects using SkPixmaps
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400469static void test_pixmap_init(GrDirectContext* dContext,
470 skiatest::Reporter* reporter,
471 std::function<GrBackendTexture (GrDirectContext*,
Robert Phillips7f367982019-09-26 14:01:36 -0400472 const SkPixmap srcData[],
473 int numLevels,
474 GrRenderable)> create,
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400475 SkColorType skColorType,
476 GrMipMapped mipMapped,
477 GrRenderable renderable,
478 bool* finishedBECreate) {
Robert Phillips7f367982019-09-26 14:01:36 -0400479 SkAutoPixmapStorage pixmapMem[6];
480 SkColor4f colors[6] = {
481 { 1.0f, 0.0f, 0.0f, 1.0f }, // R
482 { 0.0f, 1.0f, 0.0f, 0.9f }, // G
483 { 0.0f, 0.0f, 1.0f, 0.7f }, // B
484 { 0.0f, 1.0f, 1.0f, 0.5f }, // C
485 { 1.0f, 0.0f, 1.0f, 0.3f }, // M
486 { 1.0f, 1.0f, 0.0f, 0.2f }, // Y
487 };
488
489 int numMipLevels = make_pixmaps(skColorType, mipMapped, colors, pixmapMem);
490 SkASSERT(numMipLevels);
491
492 // TODO: this is tedious. Should we pass in an array of SkBitmaps instead?
493 SkPixmap pixmaps[6];
494 for (int i = 0; i < numMipLevels; ++i) {
495 pixmaps[i].reset(pixmapMem[i].info(), pixmapMem[i].addr(), pixmapMem[i].rowBytes());
496 }
497
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400498 GrBackendTexture backendTex = create(dContext, pixmaps, numMipLevels, renderable);
Robert Phillips7f367982019-09-26 14:01:36 -0400499 if (!backendTex.isValid()) {
500 // errors here should be reported by the test_wrapping test
501 return;
502 }
503
Robert Phillips9a30ee02020-04-29 08:58:39 -0400504 if (skColorType == kBGRA_8888_SkColorType && !isBGRA8(backendTex.getBackendFormat())) {
Robert Phillips7f367982019-09-26 14:01:36 -0400505 // When kBGRA is backed by an RGBA something goes wrong in the swizzling
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400506 delete_backend_texture(dContext, backendTex, finishedBECreate);
Robert Phillips7f367982019-09-26 14:01:36 -0400507 return;
508 }
509
Greg Danielb2365d82020-05-13 15:32:04 -0400510 auto checkBackendTexture = [&](SkColor4f colors[6]) {
511 if (mipMapped == GrMipMapped::kYes) {
512 SkColor4f expectedColors[6] = {
513 get_expected_color(colors[0], skColorType),
514 get_expected_color(colors[1], skColorType),
515 get_expected_color(colors[2], skColorType),
516 get_expected_color(colors[3], skColorType),
517 get_expected_color(colors[4], skColorType),
518 get_expected_color(colors[5], skColorType),
519 };
Robert Phillips7f367982019-09-26 14:01:36 -0400520
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400521 check_mipmaps(dContext, backendTex, skColorType, expectedColors, reporter, "pixmap");
Greg Danielb2365d82020-05-13 15:32:04 -0400522 }
523
524 // The last step in this test will dirty the mipmaps so do it last
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400525 check_base_readbacks(dContext, backendTex, skColorType, renderable, colors[0], reporter,
Greg Danielb2365d82020-05-13 15:32:04 -0400526 "pixmap");
527 };
528
529 checkBackendTexture(colors);
530
531 // Make sure the initial create work has finished so we can test the update independently.
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400532 wait_on_backend_work_to_finish(dContext, finishedBECreate);
Greg Danielb2365d82020-05-13 15:32:04 -0400533
534 SkColor4f colorsNew[6] = {
535 {1.0f, 1.0f, 0.0f, 0.2f}, // Y
536 {1.0f, 0.0f, 0.0f, 1.0f}, // R
537 {0.0f, 1.0f, 0.0f, 0.9f}, // G
538 {0.0f, 0.0f, 1.0f, 0.7f}, // B
539 {0.0f, 1.0f, 1.0f, 0.5f}, // C
540 {1.0f, 0.0f, 1.0f, 0.3f}, // M
541 };
542 make_pixmaps(skColorType, mipMapped, colorsNew, pixmapMem);
543 for (int i = 0; i < numMipLevels; ++i) {
544 pixmaps[i].reset(pixmapMem[i].info(), pixmapMem[i].addr(), pixmapMem[i].rowBytes());
Robert Phillips7f367982019-09-26 14:01:36 -0400545 }
546
Greg Danielb2365d82020-05-13 15:32:04 -0400547 // Upload new data and make sure everything still works
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400548 dContext->updateBackendTexture(backendTex, pixmaps, numMipLevels, mark_signaled,
549 finishedBECreate);
Greg Danielb2365d82020-05-13 15:32:04 -0400550
551 checkBackendTexture(colorsNew);
552
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400553 delete_backend_texture(dContext, backendTex, finishedBECreate);
Robert Phillips7f367982019-09-26 14:01:36 -0400554}
555
Robert Phillips02dc0302019-07-02 17:58:27 -0400556enum class VkLayout {
557 kUndefined,
558 kReadOnlyOptimal,
Robert Phillips02dc0302019-07-02 17:58:27 -0400559};
560
561void check_vk_layout(const GrBackendTexture& backendTex, VkLayout layout) {
562#if defined(SK_VULKAN) && defined(SK_DEBUG)
563 VkImageLayout expected;
564
565 switch (layout) {
566 case VkLayout::kUndefined:
567 expected = VK_IMAGE_LAYOUT_UNDEFINED;
568 break;
569 case VkLayout::kReadOnlyOptimal:
570 expected = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
571 break;
Robert Phillips02dc0302019-07-02 17:58:27 -0400572 default:
573 SkUNREACHABLE;
574 }
575
576 GrVkImageInfo vkII;
577
578 if (backendTex.getVkImageInfo(&vkII)) {
579 SkASSERT(expected == vkII.fImageLayout);
580 SkASSERT(VK_IMAGE_TILING_OPTIMAL == vkII.fImageTiling);
581 }
582#endif
583}
584
585///////////////////////////////////////////////////////////////////////////////
586// This test is a bit different from the others in this file. It is mainly checking that, for any
587// SkSurface we can create in Ganesh, we can also create a backend texture that is compatible with
588// its characterization and then create a new surface that wraps that backend texture.
589DEF_GPUTEST_FOR_RENDERING_CONTEXTS(CharacterizationBackendAllocationTest, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -0400590 auto context = ctxInfo.directContext();
Robert Phillips02dc0302019-07-02 17:58:27 -0400591
592 for (int ct = 0; ct <= kLastEnum_SkColorType; ++ct) {
593 SkColorType colorType = static_cast<SkColorType>(ct);
594
595 SkImageInfo ii = SkImageInfo::Make(32, 32, colorType, kPremul_SkAlphaType);
596
597 for (auto origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin } ) {
598 for (bool mipMaps : { true, false } ) {
599 for (int sampleCount : {1, 2}) {
600 SkSurfaceCharacterization c;
601
602 // Get a characterization, if possible
603 {
604 sk_sp<SkSurface> s = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo,
605 ii, sampleCount,
606 origin, nullptr, mipMaps);
607 if (!s) {
608 continue;
609 }
610
611 if (!s->characterize(&c)) {
612 continue;
613 }
614
615 REPORTER_ASSERT(reporter, s->isCompatible(c));
616 }
617
618 // Test out uninitialized path
619 {
620 GrBackendTexture backendTex = context->createBackendTexture(c);
621 check_vk_layout(backendTex, VkLayout::kUndefined);
622 REPORTER_ASSERT(reporter, backendTex.isValid());
623 REPORTER_ASSERT(reporter, c.isCompatible(backendTex));
624
Robert Phillipsd5e80ca2019-07-29 14:11:35 -0400625 {
626 GrBackendFormat format = context->defaultBackendFormat(
627 c.imageInfo().colorType(),
628 GrRenderable::kYes);
629 REPORTER_ASSERT(reporter, format == backendTex.getBackendFormat());
630 }
631
Robert Phillips02dc0302019-07-02 17:58:27 -0400632 sk_sp<SkSurface> s2 = SkSurface::MakeFromBackendTexture(context, c,
633 backendTex);
634 REPORTER_ASSERT(reporter, s2);
635 REPORTER_ASSERT(reporter, s2->isCompatible(c));
636
637 s2 = nullptr;
638 context->deleteBackendTexture(backendTex);
639 }
640
641 // Test out color-initialized path
Greg Danielc1ad77c2020-05-06 11:40:03 -0400642
Robert Phillips02dc0302019-07-02 17:58:27 -0400643 {
Greg Danielc1ad77c2020-05-06 11:40:03 -0400644
645 bool finished = false;
Robert Phillips02dc0302019-07-02 17:58:27 -0400646 GrBackendTexture backendTex = context->createBackendTexture(c,
Greg Danielc1ad77c2020-05-06 11:40:03 -0400647 SkColors::kRed,
648 mark_signaled,
649 &finished);
Greg Danieldddf7092020-05-06 11:52:37 -0400650 check_vk_layout(backendTex, VkLayout::kReadOnlyOptimal);
Robert Phillips02dc0302019-07-02 17:58:27 -0400651 REPORTER_ASSERT(reporter, backendTex.isValid());
652 REPORTER_ASSERT(reporter, c.isCompatible(backendTex));
653
Robert Phillipsd5e80ca2019-07-29 14:11:35 -0400654 {
655 GrBackendFormat format = context->defaultBackendFormat(
656 c.imageInfo().colorType(),
657 GrRenderable::kYes);
658 REPORTER_ASSERT(reporter, format == backendTex.getBackendFormat());
659 }
660
Robert Phillips02dc0302019-07-02 17:58:27 -0400661 sk_sp<SkSurface> s2 = SkSurface::MakeFromBackendTexture(context, c,
662 backendTex);
663 REPORTER_ASSERT(reporter, s2);
664 REPORTER_ASSERT(reporter, s2->isCompatible(c));
665
666 s2 = nullptr;
Greg Danielc1ad77c2020-05-06 11:40:03 -0400667 delete_backend_texture(context, backendTex, &finished);
Robert Phillips02dc0302019-07-02 17:58:27 -0400668 }
669 }
670 }
671 }
672 }
673}
674
Robert Phillipsefb9f142019-05-17 14:19:44 -0400675///////////////////////////////////////////////////////////////////////////////
Robert Phillips0c6daf02019-05-16 12:43:11 -0400676DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ColorTypeBackendAllocationTest, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -0400677 auto context = ctxInfo.directContext();
Robert Phillips0c6daf02019-05-16 12:43:11 -0400678 const GrCaps* caps = context->priv().caps();
679
Robert Phillips459b2952019-05-23 09:38:27 -0400680 constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f };
Robert Phillipsbd1ef682019-05-31 12:48:49 -0400681 constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f };
Robert Phillips459b2952019-05-23 09:38:27 -0400682
Robert Phillips0c6daf02019-05-16 12:43:11 -0400683 struct {
684 SkColorType fColorType;
Robert Phillips459b2952019-05-23 09:38:27 -0400685 SkColor4f fColor;
Robert Phillips0c6daf02019-05-16 12:43:11 -0400686 } combinations[] = {
Robert Phillipsea1b30b2019-09-19 16:05:48 -0400687 { kAlpha_8_SkColorType, kTransCol },
688 { kRGB_565_SkColorType, SkColors::kRed },
689 { kARGB_4444_SkColorType, SkColors::kGreen },
690 { kRGBA_8888_SkColorType, SkColors::kBlue },
691 { kRGB_888x_SkColorType, SkColors::kCyan },
Robert Phillips459b2952019-05-23 09:38:27 -0400692 // TODO: readback is busted when alpha = 0.5f (perhaps premul vs. unpremul)
Robert Phillipsea1b30b2019-09-19 16:05:48 -0400693 { kBGRA_8888_SkColorType, { 1, 0, 0, 1.0f } },
Robert Phillips9a30ee02020-04-29 08:58:39 -0400694 // TODO: readback is busted for *10A2 when alpha = 0.5f (perhaps premul vs. unpremul)
695 { kRGBA_1010102_SkColorType, { 0.25f, 0.5f, 0.75f, 1.0f }},
696 { kBGRA_1010102_SkColorType, { 0.25f, 0.5f, 0.75f, 1.0f }},
697 // RGB/BGR 101010x have no Ganesh correlate
Robert Phillipsea1b30b2019-09-19 16:05:48 -0400698 { kRGB_101010x_SkColorType, { 0, 0.5f, 0, 0.5f } },
Mike Kleinf7eb0542020-02-11 12:19:08 -0600699 { kBGR_101010x_SkColorType, { 0, 0.5f, 0, 0.5f } },
Robert Phillipsea1b30b2019-09-19 16:05:48 -0400700 { kGray_8_SkColorType, kGrayCol },
701 { kRGBA_F16Norm_SkColorType, SkColors::kLtGray },
702 { kRGBA_F16_SkColorType, SkColors::kYellow },
703 { kRGBA_F32_SkColorType, SkColors::kGray },
Robert Phillips7f367982019-09-26 14:01:36 -0400704 { kR8G8_unorm_SkColorType, { .25f, .75f, 0, 1 } },
Robert Phillipsea1b30b2019-09-19 16:05:48 -0400705 { kR16G16_unorm_SkColorType, SkColors::kGreen },
706 { kA16_unorm_SkColorType, kTransCol },
707 { kA16_float_SkColorType, kTransCol },
Robert Phillips7f367982019-09-26 14:01:36 -0400708 { kR16G16_float_SkColorType, { .25f, .75f, 0, 1 } },
Robert Phillipsea1b30b2019-09-19 16:05:48 -0400709 { kR16G16B16A16_unorm_SkColorType,{ .25f, .5f, .75f, 1 } },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400710 };
711
Brian Salomon4dea72a2019-12-18 10:43:10 -0500712 static_assert(kLastEnum_SkColorType == SK_ARRAY_COUNT(combinations));
Robert Phillips0c6daf02019-05-16 12:43:11 -0400713
714 for (auto combo : combinations) {
715 SkColorType colorType = combo.fColorType;
716
Robert Phillips0c6daf02019-05-16 12:43:11 -0400717 if (GrBackendApi::kMetal == context->backend()) {
718 // skbug.com/9086 (Metal caps may not be handling RGBA32 correctly)
719 if (kRGBA_F32_SkColorType == combo.fColorType) {
720 continue;
721 }
722 }
723
Robert Phillipsefb9f142019-05-17 14:19:44 -0400724 for (auto mipMapped : { GrMipMapped::kNo, GrMipMapped::kYes }) {
725 if (GrMipMapped::kYes == mipMapped && !caps->mipMapSupport()) {
726 continue;
Robert Phillips0c6daf02019-05-16 12:43:11 -0400727 }
728
Robert Phillipsefb9f142019-05-17 14:19:44 -0400729 for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) {
Greg Daniel7bfc9132019-08-14 14:23:53 -0400730 if (!caps->getDefaultBackendFormat(SkColorTypeToGrColorType(colorType),
731 renderable).isValid()) {
732 continue;
733 }
Robert Phillips7f367982019-09-26 14:01:36 -0400734
Robert Phillipsefb9f142019-05-17 14:19:44 -0400735 if (GrRenderable::kYes == renderable) {
736 if (kRGB_888x_SkColorType == combo.fColorType) {
737 // Ganesh can't perform the blends correctly when rendering this format
738 continue;
739 }
Robert Phillipsefb9f142019-05-17 14:19:44 -0400740 }
Robert Phillips0c6daf02019-05-16 12:43:11 -0400741
Robert Phillipsb04b6942019-05-21 17:24:31 -0400742 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400743 auto uninitCreateMtd = [colorType](GrDirectContext* dContext,
744 GrMipMapped mipMapped,
Robert Phillipsb04b6942019-05-21 17:24:31 -0400745 GrRenderable renderable) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400746 auto result = dContext->createBackendTexture(32, 32, colorType,
747 mipMapped, renderable,
748 GrProtected::kNo);
Robert Phillips02dc0302019-07-02 17:58:27 -0400749 check_vk_layout(result, VkLayout::kUndefined);
Robert Phillipsd5e80ca2019-07-29 14:11:35 -0400750
751#ifdef SK_DEBUG
752 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400753 GrBackendFormat format = dContext->defaultBackendFormat(colorType,
754 renderable);
Robert Phillipsd5e80ca2019-07-29 14:11:35 -0400755 SkASSERT(format == result.getBackendFormat());
756 }
757#endif
758
Robert Phillips02dc0302019-07-02 17:58:27 -0400759 return result;
Robert Phillipsb04b6942019-05-21 17:24:31 -0400760 };
Robert Phillipsefb9f142019-05-17 14:19:44 -0400761
Robert Phillipsb04b6942019-05-21 17:24:31 -0400762 test_wrapping(context, reporter, uninitCreateMtd,
Greg Danielc1ad77c2020-05-06 11:40:03 -0400763 SkColorTypeToGrColorType(colorType), mipMapped, renderable,
764 nullptr);
Robert Phillipsb04b6942019-05-21 17:24:31 -0400765 }
Robert Phillips459b2952019-05-23 09:38:27 -0400766
Greg Danielc1ad77c2020-05-06 11:40:03 -0400767 bool finishedBackendCreation = false;
768 bool* finishedPtr = &finishedBackendCreation;
769
Robert Phillips459b2952019-05-23 09:38:27 -0400770 {
Robert Phillips459b2952019-05-23 09:38:27 -0400771
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400772 auto createWithColorMtd = [colorType, finishedPtr](GrDirectContext* dContext,
Greg Danielc1ad77c2020-05-06 11:40:03 -0400773 const SkColor4f& color,
774 GrMipMapped mipMapped,
775 GrRenderable renderable) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400776 auto result = dContext->createBackendTexture(32, 32, colorType, color,
777 mipMapped, renderable,
778 GrProtected::kNo,
779 mark_signaled, finishedPtr);
Greg Danieldddf7092020-05-06 11:52:37 -0400780 check_vk_layout(result, VkLayout::kReadOnlyOptimal);
Robert Phillipsd5e80ca2019-07-29 14:11:35 -0400781
782#ifdef SK_DEBUG
783 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400784 GrBackendFormat format = dContext->defaultBackendFormat(colorType,
Robert Phillipsd5e80ca2019-07-29 14:11:35 -0400785 renderable);
786 SkASSERT(format == result.getBackendFormat());
787 }
788#endif
789
Robert Phillips02dc0302019-07-02 17:58:27 -0400790 return result;
Robert Phillips459b2952019-05-23 09:38:27 -0400791 };
Brian Salomon85c3d682019-11-04 15:04:54 -0500792 // We make our comparison color using SkPixmap::erase(color) on a pixmap of
793 // combo.fColorType and then calling SkPixmap::readPixels(). erase() will premul
794 // the color passed to it. However, createBackendTexture() that takes a
795 // SkColor4f is color type / alpha type unaware and will simply compute
796 // luminance from the r, g, b, channels.
797 SkColor4f color = combo.fColor;
798 if (colorType == kGray_8_SkColorType) {
799 color = {color.fR * color.fA,
800 color.fG * color.fA,
801 color.fB * color.fA,
802 1.f};
803 }
Robert Phillips459b2952019-05-23 09:38:27 -0400804 test_color_init(context, reporter, createWithColorMtd,
Brian Salomon85c3d682019-11-04 15:04:54 -0500805 SkColorTypeToGrColorType(colorType), color, mipMapped,
Greg Danielc1ad77c2020-05-06 11:40:03 -0400806 renderable, finishedPtr);
Robert Phillips459b2952019-05-23 09:38:27 -0400807 }
Robert Phillips7f367982019-09-26 14:01:36 -0400808
Robert Phillips9a30ee02020-04-29 08:58:39 -0400809 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400810 auto createWithSrcDataMtd = [finishedPtr](GrDirectContext* dContext,
Greg Danielc1ad77c2020-05-06 11:40:03 -0400811 const SkPixmap srcData[],
812 int numLevels,
813 GrRenderable renderable) {
Robert Phillips9a30ee02020-04-29 08:58:39 -0400814 SkASSERT(srcData && numLevels);
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400815 auto result = dContext->createBackendTexture(srcData, numLevels, renderable,
816 GrProtected::kNo, mark_signaled,
817 finishedPtr);
Robert Phillips9a30ee02020-04-29 08:58:39 -0400818 check_vk_layout(result, VkLayout::kReadOnlyOptimal);
Robert Phillips7f367982019-09-26 14:01:36 -0400819#ifdef SK_DEBUG
Robert Phillips9a30ee02020-04-29 08:58:39 -0400820 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400821 auto format = dContext->defaultBackendFormat(srcData[0].colorType(),
822 renderable);
Robert Phillips9a30ee02020-04-29 08:58:39 -0400823 SkASSERT(format == result.getBackendFormat());
824 }
Robert Phillips7f367982019-09-26 14:01:36 -0400825#endif
Robert Phillips9a30ee02020-04-29 08:58:39 -0400826 return result;
827 };
Robert Phillips7f367982019-09-26 14:01:36 -0400828
Robert Phillips9a30ee02020-04-29 08:58:39 -0400829 test_pixmap_init(context, reporter, createWithSrcDataMtd, colorType, mipMapped,
Greg Danielc1ad77c2020-05-06 11:40:03 -0400830 renderable, finishedPtr);
Robert Phillips9a30ee02020-04-29 08:58:39 -0400831 }
Robert Phillipsefb9f142019-05-17 14:19:44 -0400832 }
Robert Phillips0c6daf02019-05-16 12:43:11 -0400833 }
834 }
Robert Phillips0c6daf02019-05-16 12:43:11 -0400835}
836
Robert Phillipsefb9f142019-05-17 14:19:44 -0400837///////////////////////////////////////////////////////////////////////////////
838#ifdef SK_GL
839
Robert Phillips0c6daf02019-05-16 12:43:11 -0400840DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(GLBackendAllocationTest, reporter, ctxInfo) {
841 sk_gpu_test::GLTestContext* glCtx = ctxInfo.glContext();
842 GrGLStandard standard = glCtx->gl()->fStandard;
Robert Phillips6d344c32020-07-06 10:56:46 -0400843 auto context = ctxInfo.directContext();
Robert Phillipsefb9f142019-05-17 14:19:44 -0400844 const GrGLCaps* glCaps = static_cast<const GrGLCaps*>(context->priv().caps());
Robert Phillips0c6daf02019-05-16 12:43:11 -0400845
Robert Phillips459b2952019-05-23 09:38:27 -0400846 constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f };
Robert Phillipsbd1ef682019-05-31 12:48:49 -0400847 constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f };
Robert Phillips459b2952019-05-23 09:38:27 -0400848
Robert Phillips0c6daf02019-05-16 12:43:11 -0400849 struct {
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400850 GrColorType fColorType;
Robert Phillips0c6daf02019-05-16 12:43:11 -0400851 GrGLenum fFormat;
Robert Phillips459b2952019-05-23 09:38:27 -0400852 SkColor4f fColor;
Robert Phillips0c6daf02019-05-16 12:43:11 -0400853 } combinations[] = {
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400854 { GrColorType::kRGBA_8888, GR_GL_RGBA8, SkColors::kRed },
855 { GrColorType::kRGBA_8888_SRGB, GR_GL_SRGB8_ALPHA8, SkColors::kRed },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400856
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400857 { GrColorType::kRGB_888x, GR_GL_RGBA8, SkColors::kYellow },
858 { GrColorType::kRGB_888x, GR_GL_RGB8, SkColors::kCyan },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400859
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400860 { GrColorType::kBGRA_8888, GR_GL_RGBA8, SkColors::kBlue },
861 { GrColorType::kBGRA_8888, GR_GL_BGRA8, SkColors::kBlue },
862 // TODO: readback is busted when alpha = 0.5f (perhaps premul vs. unpremul)
Robert Phillips9a30ee02020-04-29 08:58:39 -0400863 { GrColorType::kRGBA_1010102, GR_GL_RGB10_A2, { 0.25f, 0.5f, 0.75f, 1.f }},
864 { GrColorType::kBGRA_1010102, GR_GL_RGB10_A2, { 0.25f, 0.5f, 0.75f, 1.f }},
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400865 { GrColorType::kBGR_565, GR_GL_RGB565, SkColors::kRed },
866 { GrColorType::kABGR_4444, GR_GL_RGBA4, SkColors::kGreen },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400867
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400868 { GrColorType::kAlpha_8, GR_GL_ALPHA8, kTransCol },
869 { GrColorType::kAlpha_8, GR_GL_R8, kTransCol },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400870
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400871 { GrColorType::kGray_8, GR_GL_LUMINANCE8, kGrayCol },
872 { GrColorType::kGray_8, GR_GL_R8, kGrayCol },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400873
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400874 { GrColorType::kRGBA_F32, GR_GL_RGBA32F, SkColors::kRed },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400875
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400876 { GrColorType::kRGBA_F16_Clamped, GR_GL_RGBA16F, SkColors::kLtGray },
877 { GrColorType::kRGBA_F16, GR_GL_RGBA16F, SkColors::kYellow },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400878
Robert Phillipsd470e1b2019-09-04 15:05:35 -0400879 { GrColorType::kRG_88, GR_GL_RG8, { 1, 0.5f, 0, 1 } },
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400880 { GrColorType::kAlpha_F16, GR_GL_R16F, { 1.0f, 0, 0, 0.5f } },
881 { GrColorType::kAlpha_F16, GR_GL_LUMINANCE16F, kGrayCol },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400882
Robert Phillips429f0d32019-09-11 17:03:28 -0400883 { GrColorType::kAlpha_16, GR_GL_R16, kTransCol },
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400884 { GrColorType::kRG_1616, GR_GL_RG16, SkColors::kYellow },
Robert Phillips66a46032019-06-18 08:00:42 -0400885
Robert Phillipsb7f95d12019-07-26 11:13:19 -0400886 { GrColorType::kRGBA_16161616, GR_GL_RGBA16, SkColors::kLtGray },
887 { GrColorType::kRG_F16, GR_GL_RG16F, SkColors::kYellow },
Robert Phillips0c6daf02019-05-16 12:43:11 -0400888 };
889
890 for (auto combo : combinations) {
Brian Salomon0f396992020-06-19 19:51:21 -0400891 for (GrGLenum target : {GR_GL_TEXTURE_2D, GR_GL_TEXTURE_RECTANGLE}) {
892 GrBackendFormat format = GrBackendFormat::MakeGL(combo.fFormat, target);
Robert Phillips0c6daf02019-05-16 12:43:11 -0400893
Brian Salomon0f396992020-06-19 19:51:21 -0400894 if (!glCaps->isFormatTexturable(format)) {
Robert Phillipsefb9f142019-05-17 14:19:44 -0400895 continue;
Robert Phillips0c6daf02019-05-16 12:43:11 -0400896 }
897
Brian Salomon0f396992020-06-19 19:51:21 -0400898 if (GrColorType::kBGRA_8888 == combo.fColorType ||
899 GrColorType::kBGRA_1010102 == combo.fColorType) {
900 // We allow using a GL_RGBA8 or GR_GL_RGB10_A2 texture as BGRA on desktop GL but not
901 // ES
902 if (kGL_GrGLStandard != standard &&
903 (GR_GL_RGBA8 == combo.fFormat || GR_GL_RGB10_A2 == combo.fFormat)) {
904 continue;
905 }
906 }
Robert Phillips0c6daf02019-05-16 12:43:11 -0400907
Brian Salomon0f396992020-06-19 19:51:21 -0400908 for (auto mipMapped : {GrMipMapped::kNo, GrMipMapped::kYes}) {
909 if (GrMipMapped::kYes == mipMapped &&
910 (!glCaps->mipMapSupport() || target == GR_GL_TEXTURE_RECTANGLE)) {
911 continue;
Robert Phillipsefb9f142019-05-17 14:19:44 -0400912 }
913
Brian Salomon0f396992020-06-19 19:51:21 -0400914 for (auto renderable : {GrRenderable::kNo, GrRenderable::kYes}) {
915 if (GrRenderable::kYes == renderable) {
916 if (!glCaps->isFormatAsColorTypeRenderable(combo.fColorType, format)) {
917 continue;
918 }
Robert Phillips459b2952019-05-23 09:38:27 -0400919 }
920
Brian Salomon0f396992020-06-19 19:51:21 -0400921 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400922 auto uninitCreateMtd = [format](GrDirectContext* dContext,
923 GrMipMapped mipMapped,
Brian Salomon0f396992020-06-19 19:51:21 -0400924 GrRenderable renderable) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400925 return dContext->createBackendTexture(32, 32, format, mipMapped,
926 renderable, GrProtected::kNo);
Brian Salomon0f396992020-06-19 19:51:21 -0400927 };
Greg Danielc1ad77c2020-05-06 11:40:03 -0400928
Brian Salomon0f396992020-06-19 19:51:21 -0400929 test_wrapping(context, reporter, uninitCreateMtd, combo.fColorType,
930 mipMapped, renderable, nullptr);
Brian Salomon85c3d682019-11-04 15:04:54 -0500931 }
Robert Phillips459b2952019-05-23 09:38:27 -0400932
Brian Salomon0f396992020-06-19 19:51:21 -0400933 {
934 // We're creating backend textures without specifying a color type "view" of
935 // them at the public API level. Therefore, Ganesh will not apply any
936 // swizzles before writing the color to the texture. However, our validation
937 // code does rely on interpreting the texture contents via a SkColorType and
938 // therefore swizzles may be applied during the read step. Ideally we'd
939 // update our validation code to use a "raw" read that doesn't impose a
940 // color type but for now we just munge the data we upload to match the
941 // expectation.
942 GrSwizzle swizzle;
943 switch (combo.fColorType) {
944 case GrColorType::kAlpha_8:
945 swizzle = GrSwizzle("aaaa");
946 break;
947 case GrColorType::kAlpha_16:
948 swizzle = GrSwizzle("aaaa");
949 break;
950 case GrColorType::kAlpha_F16:
951 swizzle = GrSwizzle("aaaa");
952 break;
953 default:
954 break;
955 }
956
957 bool finishedBackendCreation = false;
958 bool* finishedPtr = &finishedBackendCreation;
959
960 auto createWithColorMtd = [format, swizzle, finishedPtr](
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400961 GrDirectContext* dContext,
Brian Salomon0f396992020-06-19 19:51:21 -0400962 const SkColor4f& color,
963 GrMipMapped mipMapped,
964 GrRenderable renderable) {
965 auto swizzledColor = swizzle.applyTo(color);
Robert Phillipsfe4b4812020-07-17 14:15:51 -0400966 return dContext->createBackendTexture(
Brian Salomon0f396992020-06-19 19:51:21 -0400967 32, 32, format, swizzledColor, mipMapped, renderable,
968 GrProtected::kNo, mark_signaled, finishedPtr);
969 };
970 // We make our comparison color using SkPixmap::erase(color) on a pixmap of
971 // combo.fColorType and then calling SkPixmap::readPixels(). erase() will
972 // premul the color passed to it. However, createBackendTexture() that takes
973 // a SkColor4f is color type/alpha type unaware and will simply compute
974 // luminance from the r, g, b, channels.
975 SkColor4f color = combo.fColor;
976 if (combo.fColorType == GrColorType::kGray_8) {
977 color = {color.fR * color.fA,
978 color.fG * color.fA,
979 color.fB * color.fA,
980 1.f};
981 }
982
983 test_color_init(context, reporter, createWithColorMtd, combo.fColorType,
984 color, mipMapped, renderable, finishedPtr);
985 }
Robert Phillips459b2952019-05-23 09:38:27 -0400986 }
Robert Phillipsefb9f142019-05-17 14:19:44 -0400987 }
Robert Phillips0c6daf02019-05-16 12:43:11 -0400988 }
989 }
990}
991
Robert Phillipsefb9f142019-05-17 14:19:44 -0400992#endif
993
994///////////////////////////////////////////////////////////////////////////////
Robert Phillips0c6daf02019-05-16 12:43:11 -0400995
996#ifdef SK_VULKAN
997
998#include "src/gpu/vk/GrVkCaps.h"
999
1000DEF_GPUTEST_FOR_VULKAN_CONTEXT(VkBackendAllocationTest, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -04001001 auto context = ctxInfo.directContext();
Robert Phillips0c6daf02019-05-16 12:43:11 -04001002 const GrVkCaps* vkCaps = static_cast<const GrVkCaps*>(context->priv().caps());
1003
Robert Phillips459b2952019-05-23 09:38:27 -04001004 constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f };
Robert Phillips7f367982019-09-26 14:01:36 -04001005 constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 1 };
Robert Phillips459b2952019-05-23 09:38:27 -04001006
Robert Phillips0c6daf02019-05-16 12:43:11 -04001007 struct {
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001008 GrColorType fColorType;
Robert Phillips0c6daf02019-05-16 12:43:11 -04001009 VkFormat fFormat;
Robert Phillips459b2952019-05-23 09:38:27 -04001010 SkColor4f fColor;
Robert Phillips0c6daf02019-05-16 12:43:11 -04001011 } combinations[] = {
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001012 { GrColorType::kRGBA_8888, VK_FORMAT_R8G8B8A8_UNORM, SkColors::kRed },
1013 { GrColorType::kRGBA_8888_SRGB, VK_FORMAT_R8G8B8A8_SRGB, SkColors::kRed },
Robert Phillips0c6daf02019-05-16 12:43:11 -04001014
Robert Phillipsbd1ef682019-05-31 12:48:49 -04001015 // In this configuration (i.e., an RGB_888x colortype with an RGBA8 backing format),
1016 // there is nothing to tell Skia to make the provided color opaque. Clients will need
1017 // to provide an opaque initialization color in this case.
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001018 { GrColorType::kRGB_888x, VK_FORMAT_R8G8B8A8_UNORM, SkColors::kYellow },
1019 { GrColorType::kRGB_888x, VK_FORMAT_R8G8B8_UNORM, SkColors::kCyan },
Robert Phillips0c6daf02019-05-16 12:43:11 -04001020
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001021 { GrColorType::kBGRA_8888, VK_FORMAT_B8G8R8A8_UNORM, SkColors::kBlue },
Robert Phillips0c6daf02019-05-16 12:43:11 -04001022
Robert Phillips9a30ee02020-04-29 08:58:39 -04001023 { GrColorType::kRGBA_1010102, VK_FORMAT_A2B10G10R10_UNORM_PACK32,
1024 { 0.25f, 0.5f, 0.75f, 1.0f }},
1025 { GrColorType::kBGRA_1010102, VK_FORMAT_A2R10G10B10_UNORM_PACK32,
1026 { 0.25f, 0.5f, 0.75f, 1.0f }},
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001027 { GrColorType::kBGR_565, VK_FORMAT_R5G6B5_UNORM_PACK16, SkColors::kRed },
Robert Phillipsefb9f142019-05-17 14:19:44 -04001028
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001029 { GrColorType::kABGR_4444, VK_FORMAT_R4G4B4A4_UNORM_PACK16, SkColors::kCyan },
1030 { GrColorType::kABGR_4444, VK_FORMAT_B4G4R4A4_UNORM_PACK16, SkColors::kYellow },
Robert Phillipsefb9f142019-05-17 14:19:44 -04001031
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001032 { GrColorType::kAlpha_8, VK_FORMAT_R8_UNORM, kTransCol },
Robert Phillipsbd1ef682019-05-31 12:48:49 -04001033 // In this config (i.e., a Gray8 color type with an R8 backing format), there is nothing
1034 // to tell Skia this isn't an Alpha8 color type (so it will initialize the texture with
1035 // the alpha channel of the color). Clients should, in general, fill all the channels
1036 // of the provided color with the same value in such cases.
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001037 { GrColorType::kGray_8, VK_FORMAT_R8_UNORM, kGrayCol },
Robert Phillipsbd1ef682019-05-31 12:48:49 -04001038
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001039 { GrColorType::kRGBA_F16_Clamped, VK_FORMAT_R16G16B16A16_SFLOAT, SkColors::kLtGray },
1040 { GrColorType::kRGBA_F16, VK_FORMAT_R16G16B16A16_SFLOAT, SkColors::kYellow },
Robert Phillips0c6daf02019-05-16 12:43:11 -04001041
Robert Phillipsd470e1b2019-09-04 15:05:35 -04001042 { GrColorType::kRG_88, VK_FORMAT_R8G8_UNORM, { 1, 0.5f, 0, 1 } },
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001043 { GrColorType::kAlpha_F16, VK_FORMAT_R16_SFLOAT, { 1.0f, 0, 0, 0.5f }},
1044
Robert Phillips429f0d32019-09-11 17:03:28 -04001045 { GrColorType::kAlpha_16, VK_FORMAT_R16_UNORM, kTransCol },
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001046 { GrColorType::kRG_1616, VK_FORMAT_R16G16_UNORM, SkColors::kYellow },
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001047 { GrColorType::kRGBA_16161616, VK_FORMAT_R16G16B16A16_UNORM, SkColors::kLtGray },
1048 { GrColorType::kRG_F16, VK_FORMAT_R16G16_SFLOAT, SkColors::kYellow },
Robert Phillips0c6daf02019-05-16 12:43:11 -04001049 };
1050
1051 for (auto combo : combinations) {
Greg Daniel2f2caea2019-07-08 14:24:47 -04001052 if (!vkCaps->isVkFormatTexturable(combo.fFormat)) {
Robert Phillips0c6daf02019-05-16 12:43:11 -04001053 continue;
1054 }
1055
1056 GrBackendFormat format = GrBackendFormat::MakeVk(combo.fFormat);
1057
Robert Phillipsefb9f142019-05-17 14:19:44 -04001058 for (auto mipMapped : { GrMipMapped::kNo, GrMipMapped::kYes }) {
1059 if (GrMipMapped::kYes == mipMapped && !vkCaps->mipMapSupport()) {
1060 continue;
Robert Phillips0c6daf02019-05-16 12:43:11 -04001061 }
1062
Robert Phillipsefb9f142019-05-17 14:19:44 -04001063 for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) {
Robert Phillips0c6daf02019-05-16 12:43:11 -04001064
Robert Phillipsefb9f142019-05-17 14:19:44 -04001065 if (GrRenderable::kYes == renderable) {
Brian Salomon4eb38b72019-08-05 12:58:39 -04001066 // We must also check whether we allow rendering to the format using the
1067 // color type.
Greg Daniel900583a2019-08-06 12:05:31 -04001068 if (!vkCaps->isFormatAsColorTypeRenderable(
1069 combo.fColorType, GrBackendFormat::MakeVk(combo.fFormat), 1)) {
Brian Salomon4eb38b72019-08-05 12:58:39 -04001070 continue;
1071 }
Robert Phillipsefb9f142019-05-17 14:19:44 -04001072 }
1073
Robert Phillipsd34691b2019-09-24 13:38:43 -04001074 {
Robert Phillipsfe4b4812020-07-17 14:15:51 -04001075 auto uninitCreateMtd = [format](GrDirectContext* dContext,
1076 GrMipMapped mipMapped,
Robert Phillips459b2952019-05-23 09:38:27 -04001077 GrRenderable renderable) {
Robert Phillipsfe4b4812020-07-17 14:15:51 -04001078 GrBackendTexture beTex = dContext->createBackendTexture(32, 32, format,
1079 mipMapped,
1080 renderable,
1081 GrProtected::kNo);
Robert Phillips02dc0302019-07-02 17:58:27 -04001082 check_vk_layout(beTex, VkLayout::kUndefined);
Robert Phillipsd1d869d2019-06-07 14:21:31 -04001083 return beTex;
Robert Phillipsb04b6942019-05-21 17:24:31 -04001084 };
Robert Phillipsefb9f142019-05-17 14:19:44 -04001085
Robert Phillipsb04b6942019-05-21 17:24:31 -04001086 test_wrapping(context, reporter, uninitCreateMtd,
Greg Danielc1ad77c2020-05-06 11:40:03 -04001087 combo.fColorType, mipMapped, renderable, nullptr);
Robert Phillipsb04b6942019-05-21 17:24:31 -04001088 }
Robert Phillips459b2952019-05-23 09:38:27 -04001089
Robert Phillips459b2952019-05-23 09:38:27 -04001090 {
Brian Salomonb450f3b2019-07-09 09:36:51 -04001091 // We're creating backend textures without specifying a color type "view" of
1092 // them at the public API level. Therefore, Ganesh will not apply any swizzles
1093 // before writing the color to the texture. However, our validation code does
1094 // rely on interpreting the texture contents via a SkColorType and therefore
1095 // swizzles may be applied during the read step.
1096 // Ideally we'd update our validation code to use a "raw" read that doesn't
1097 // impose a color type but for now we just munge the data we upload to match the
1098 // expectation.
1099 GrSwizzle swizzle;
1100 switch (combo.fColorType) {
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001101 case GrColorType::kAlpha_8:
Brian Salomonb450f3b2019-07-09 09:36:51 -04001102 SkASSERT(combo.fFormat == VK_FORMAT_R8_UNORM);
1103 swizzle = GrSwizzle("aaaa");
1104 break;
Robert Phillips429f0d32019-09-11 17:03:28 -04001105 case GrColorType::kAlpha_16:
1106 SkASSERT(combo.fFormat == VK_FORMAT_R16_UNORM);
1107 swizzle = GrSwizzle("aaaa");
1108 break;
Robert Phillips17a3a0b2019-09-18 13:56:54 -04001109 case GrColorType::kAlpha_F16:
1110 SkASSERT(combo.fFormat == VK_FORMAT_R16_SFLOAT);
1111 swizzle = GrSwizzle("aaaa");
1112 break;
Robert Phillipsb7f95d12019-07-26 11:13:19 -04001113 case GrColorType::kABGR_4444:
Brian Salomonb450f3b2019-07-09 09:36:51 -04001114 if (combo.fFormat == VK_FORMAT_B4G4R4A4_UNORM_PACK16) {
1115 swizzle = GrSwizzle("bgra");
1116 }
1117 break;
1118 default:
1119 swizzle = GrSwizzle("rgba");
1120 break;
1121 }
Greg Danielc1ad77c2020-05-06 11:40:03 -04001122
1123 bool finishedBackendCreation = false;
1124 bool* finishedPtr = &finishedBackendCreation;
1125
1126 auto createWithColorMtd = [format, swizzle, finishedPtr](
Robert Phillipsfe4b4812020-07-17 14:15:51 -04001127 GrDirectContext* dContext,
1128 const SkColor4f& color,
1129 GrMipMapped mipMapped,
Greg Danielc1ad77c2020-05-06 11:40:03 -04001130 GrRenderable renderable) {
Brian Salomonb450f3b2019-07-09 09:36:51 -04001131 auto swizzledColor = swizzle.applyTo(color);
Robert Phillipsfe4b4812020-07-17 14:15:51 -04001132 GrBackendTexture beTex = dContext->createBackendTexture(32, 32, format,
1133 swizzledColor,
1134 mipMapped,
1135 renderable,
1136 GrProtected::kNo,
1137 mark_signaled,
1138 finishedPtr);
Greg Danieldddf7092020-05-06 11:52:37 -04001139 check_vk_layout(beTex, VkLayout::kReadOnlyOptimal);
Robert Phillipsd1d869d2019-06-07 14:21:31 -04001140 return beTex;
Robert Phillips459b2952019-05-23 09:38:27 -04001141 };
Robert Phillips459b2952019-05-23 09:38:27 -04001142 test_color_init(context, reporter, createWithColorMtd,
Greg Danielc1ad77c2020-05-06 11:40:03 -04001143 combo.fColorType, combo.fColor, mipMapped, renderable,
1144 finishedPtr);
Robert Phillips459b2952019-05-23 09:38:27 -04001145 }
Robert Phillipsefb9f142019-05-17 14:19:44 -04001146 }
Robert Phillips0c6daf02019-05-16 12:43:11 -04001147 }
1148 }
1149}
1150
1151#endif