Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1 | /* |
| 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 Phillips | e19babf | 2020-04-06 13:57:30 -0400 | [diff] [blame] | 8 | #include "include/core/SkCanvas.h" |
Mike Klein | fe0aeb3 | 2019-05-20 10:55:11 -0500 | [diff] [blame] | 9 | #include "include/core/SkSurface.h" |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 10 | #include "include/core/SkSurfaceCharacterization.h" |
Robert Phillips | 6d344c3 | 2020-07-06 10:56:46 -0400 | [diff] [blame] | 11 | #include "include/gpu/GrDirectContext.h" |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 12 | #include "src/core/SkAutoPixmapStorage.h" |
Mike Klein | 4b432fa | 2019-06-06 11:44:05 -0500 | [diff] [blame] | 13 | #include "src/gpu/GrContextPriv.h" |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 14 | #include "src/image/SkImage_Base.h" |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 15 | #include "tests/Test.h" |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 16 | #include "tests/TestUtils.h" |
| 17 | #include "tools/ToolUtils.h" |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 18 | |
Robert Phillips | 27eb525 | 2019-06-03 12:59:40 -0400 | [diff] [blame] | 19 | #ifdef SK_GL |
Robert Phillips | ee94693 | 2019-12-18 11:16:17 -0500 | [diff] [blame] | 20 | #include "src/gpu/gl/GrGLCaps.h" |
| 21 | #include "src/gpu/gl/GrGLDefines.h" |
Robert Phillips | 27eb525 | 2019-06-03 12:59:40 -0400 | [diff] [blame] | 22 | #include "src/gpu/gl/GrGLGpu.h" |
| 23 | #include "src/gpu/gl/GrGLUtil.h" |
| 24 | #endif |
| 25 | |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 26 | #ifdef SK_METAL |
| 27 | #include "include/gpu/mtl/GrMtlTypes.h" |
| 28 | #include "src/gpu/mtl/GrMtlCppUtil.h" |
| 29 | #endif |
| 30 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 31 | static void wait_on_backend_work_to_finish(GrDirectContext* dContext, bool* finishedCreate) { |
| 32 | dContext->submit(); |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 33 | while (finishedCreate && !(*finishedCreate)) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 34 | dContext->checkAsyncWorkCompletion(); |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 35 | } |
| 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 Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 42 | } |
| 43 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 44 | static void delete_backend_texture(GrDirectContext* dContext, |
| 45 | const GrBackendTexture& backendTexture, |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 46 | bool* finishedCreate) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 47 | wait_on_backend_work_to_finish(dContext, finishedCreate); |
| 48 | dContext->deleteBackendTexture(backendTexture); |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 49 | } |
| 50 | |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 51 | static void mark_signaled(void* context) { |
| 52 | *(bool*)context = true; |
| 53 | } |
| 54 | |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 55 | // Test wrapping of GrBackendObjects in SkSurfaces and SkImages (non-static since used in Mtl test) |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 56 | void test_wrapping(GrDirectContext* dContext, |
| 57 | skiatest::Reporter* reporter, |
| 58 | std::function<GrBackendTexture (GrDirectContext*, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 59 | GrMipmapped, |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 60 | GrRenderable)> create, |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 61 | GrColorType grColorType, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 62 | GrMipmapped mipMapped, |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 63 | GrRenderable renderable, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 64 | bool* finishedBECreate) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 65 | GrResourceCache* cache = dContext->priv().getResourceCache(); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 66 | |
| 67 | const int initialCount = cache->getResourceCount(); |
| 68 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 69 | GrBackendTexture backendTex = create(dContext, mipMapped, renderable); |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 70 | if (!backendTex.isValid()) { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 71 | ERRORF(reporter, "Couldn't create backendTexture for grColorType %d renderable %s\n", |
| 72 | grColorType, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 73 | GrRenderable::kYes == renderable ? "yes" : "no"); |
| 74 | return; |
| 75 | } |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 76 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 77 | // Skia proper should know nothing about the new backend object |
| 78 | REPORTER_ASSERT(reporter, initialCount == cache->getResourceCount()); |
| 79 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 80 | SkColorType skColorType = GrColorTypeToSkColorType(grColorType); |
| 81 | |
| 82 | // Wrapping a backendTexture in an image requires an SkColorType |
| 83 | if (kUnknown_SkColorType == skColorType) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 84 | delete_backend_texture(dContext, backendTex, finishedBECreate); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 85 | return; |
| 86 | } |
| 87 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 88 | if (GrRenderable::kYes == renderable && dContext->colorTypeSupportedAsSurface(skColorType)) { |
| 89 | sk_sp<SkSurface> surf = SkSurface::MakeFromBackendTexture(dContext, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 90 | backendTex, |
| 91 | kTopLeft_GrSurfaceOrigin, |
| 92 | 0, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 93 | skColorType, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 94 | nullptr, nullptr); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 95 | if (!surf) { |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 96 | ERRORF(reporter, "Couldn't make surface from backendTexture for %s\n", |
| 97 | ToolUtils::colortype_name(skColorType)); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 98 | } else { |
| 99 | REPORTER_ASSERT(reporter, initialCount+1 == cache->getResourceCount()); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 100 | } |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 101 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 102 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 103 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 104 | sk_sp<SkImage> img = SkImage::MakeFromTexture(dContext, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 105 | backendTex, |
| 106 | kTopLeft_GrSurfaceOrigin, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 107 | skColorType, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 108 | kPremul_SkAlphaType, |
| 109 | nullptr); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 110 | if (!img) { |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 111 | ERRORF(reporter, "Couldn't make image from backendTexture for %s\n", |
| 112 | ToolUtils::colortype_name(skColorType)); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 113 | } else { |
| 114 | SkImage_Base* ib = as_IB(img); |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 115 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 116 | GrTextureProxy* proxy = ib->peekProxy(); |
| 117 | REPORTER_ASSERT(reporter, proxy); |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 118 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 119 | REPORTER_ASSERT(reporter, mipMapped == proxy->proxyMipMapped()); |
| 120 | REPORTER_ASSERT(reporter, proxy->isInstantiated()); |
| 121 | REPORTER_ASSERT(reporter, mipMapped == proxy->mipMapped()); |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 122 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 123 | REPORTER_ASSERT(reporter, initialCount+1 == cache->getResourceCount()); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 124 | } |
| 125 | } |
| 126 | |
| 127 | REPORTER_ASSERT(reporter, initialCount == cache->getResourceCount()); |
| 128 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 129 | delete_backend_texture(dContext, backendTex, finishedBECreate); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 130 | } |
| 131 | |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 132 | static bool isBGRA8(const GrBackendFormat& format) { |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 133 | switch (format.backend()) { |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 134 | 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 Verth | b01e12b | 2020-02-18 14:34:38 -0500 | [diff] [blame] | 149 | case GrBackendApi::kMetal: |
| 150 | #ifdef SK_METAL |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 151 | return GrMtlFormatIsBGRA8(format.asMtlFormat()); |
Jim Van Verth | b01e12b | 2020-02-18 14:34:38 -0500 | [diff] [blame] | 152 | #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 White | 3624874 | 2020-06-10 22:24:57 -0400 | [diff] [blame] | 162 | #ifdef SK_DAWN |
| 163 | wgpu::TextureFormat dawnFormat; |
| 164 | format.asDawnFormat(&dawnFormat); |
| 165 | return dawnFormat == wgpu::TextureFormat::BGRA8Unorm; |
| 166 | #else |
Jim Van Verth | b01e12b | 2020-02-18 14:34:38 -0500 | [diff] [blame] | 167 | return false; |
Stephen White | 3624874 | 2020-06-10 22:24:57 -0400 | [diff] [blame] | 168 | #endif |
Robert Phillips | a27d625 | 2019-12-10 14:48:36 -0500 | [diff] [blame] | 169 | 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 Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 175 | return format.asMockColorType() == GrColorType::kBGRA_8888; |
Robert Phillips | a27d625 | 2019-12-10 14:48:36 -0500 | [diff] [blame] | 176 | } |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 177 | } |
| 178 | SkUNREACHABLE; |
| 179 | } |
| 180 | |
| 181 | static bool isRGB(const GrBackendFormat& format) { |
| 182 | switch (format.backend()) { |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 183 | 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 Verth | b01e12b | 2020-02-18 14:34:38 -0500 | [diff] [blame] | 198 | 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 Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 204 | case GrBackendApi::kMock: |
| 205 | return false; // No GrColorType::kRGB_888 |
| 206 | } |
| 207 | SkUNREACHABLE; |
| 208 | } |
| 209 | |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 210 | static void check_solid_pixmap(skiatest::Reporter* reporter, |
| 211 | const SkColor4f& expected, const SkPixmap& actual, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 212 | SkColorType ct, const char* label1, const char* label2) { |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 213 | // we need 0.001f across the board just for noise |
| 214 | // we need 0.01f across the board for 1010102 |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 215 | const float tols[4] = { 0.01f, 0.01f, 0.01f, 0.01f }; |
Robert Phillips | 27eb525 | 2019-06-03 12:59:40 -0400 | [diff] [blame] | 216 | |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 217 | auto error = std::function<ComparePixmapsErrorReporter>( |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 218 | [reporter, ct, label1, label2](int x, int y, const float diffs[4]) { |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 219 | SkASSERT(x >= 0 && y >= 0); |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 220 | ERRORF(reporter, "%s %s %s - mismatch at %d, %d (%f, %f, %f %f)", |
| 221 | ToolUtils::colortype_name(ct), label1, label2, x, y, |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 222 | diffs[0], diffs[1], diffs[2], diffs[3]); |
| 223 | }); |
| 224 | |
Brian Salomon | 28a8f28 | 2019-10-24 20:07:39 -0400 | [diff] [blame] | 225 | CheckSolidPixels(expected, actual, tols, error); |
Robert Phillips | 27eb525 | 2019-06-03 12:59:40 -0400 | [diff] [blame] | 226 | } |
| 227 | |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 228 | // What would raster do? |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 229 | static SkColor4f get_expected_color(SkColor4f orig, SkColorType ct) { |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 230 | SkAlphaType at = SkColorTypeIsAlwaysOpaque(ct) ? kOpaque_SkAlphaType |
| 231 | : kPremul_SkAlphaType; |
Robert Phillips | e3b6fe4 | 2019-09-11 11:26:46 -0400 | [diff] [blame] | 232 | |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 233 | 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 Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 239 | } |
| 240 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 241 | static void check_mipmaps(GrDirectContext*, const GrBackendTexture&, |
| 242 | SkColorType, const SkColor4f expectedColors[6], |
| 243 | skiatest::Reporter*, const char* label); |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 244 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 245 | static void check_base_readbacks(GrDirectContext* dContext, const GrBackendTexture& backendTex, |
Robert Phillips | 0ee1034 | 2019-09-25 09:55:16 -0400 | [diff] [blame] | 246 | SkColorType skColorType, GrRenderable renderable, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 247 | 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 Phillips | 0ee1034 | 2019-09-25 09:55:16 -0400 | [diff] [blame] | 254 | |
| 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 Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 264 | kUnpremul_SkAlphaType); |
Robert Phillips | 0ee1034 | 2019-09-25 09:55:16 -0400 | [diff] [blame] | 265 | |
| 266 | SkAssertResult(actual.tryAlloc(readBackII)); |
| 267 | } |
| 268 | |
Robert Phillips | 0ee1034 | 2019-09-25 09:55:16 -0400 | [diff] [blame] | 269 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 270 | sk_sp<SkImage> img = SkImage::MakeFromTexture(dContext, |
Robert Phillips | 0ee1034 | 2019-09-25 09:55:16 -0400 | [diff] [blame] | 271 | 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 Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 287 | label, "SkImage::readPixels"); |
Robert Phillips | 0ee1034 | 2019-09-25 09:55:16 -0400 | [diff] [blame] | 288 | } |
| 289 | } |
| 290 | } |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 291 | |
| 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 Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 294 | if (GrRenderable::kYes == renderable && dContext->colorTypeSupportedAsSurface(skColorType)) { |
| 295 | sk_sp<SkSurface> surf = SkSurface::MakeFromBackendTexture(dContext, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 296 | 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 Phillips | 0ee1034 | 2019-09-25 09:55:16 -0400 | [diff] [blame] | 310 | } |
| 311 | |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 312 | // Test initialization of GrBackendObjects to a specific color (non-static since used in Mtl test) |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 313 | void test_color_init(GrDirectContext* dContext, |
| 314 | skiatest::Reporter* reporter, |
| 315 | std::function<GrBackendTexture (GrDirectContext*, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 316 | const SkColor4f&, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 317 | GrMipmapped, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 318 | GrRenderable)> create, |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 319 | GrColorType grColorType, |
| 320 | const SkColor4f& color, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 321 | GrMipmapped mipMapped, |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 322 | GrRenderable renderable, |
| 323 | bool* finishedBECreate) { |
| 324 | GrBackendTexture backendTex = create(dContext, color, mipMapped, renderable); |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 325 | if (!backendTex.isValid()) { |
| 326 | // errors here should be reported by the test_wrapping test |
| 327 | return; |
| 328 | } |
| 329 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 330 | 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 Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 334 | // TODO: burrow in and scrappily check that data was uploaded! |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 335 | delete_backend_texture(dContext, backendTex, finishedBECreate); |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 336 | return; |
| 337 | } |
| 338 | |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 339 | auto checkBackendTexture = [&](const SkColor4f& testColor) { |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 340 | if (mipMapped == GrMipmapped::kYes) { |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 341 | SkColor4f expectedColor = get_expected_color(testColor, skColorType); |
| 342 | SkColor4f expectedColors[6] = {expectedColor, expectedColor, expectedColor, |
| 343 | expectedColor, expectedColor, expectedColor}; |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 344 | check_mipmaps(dContext, backendTex, skColorType, expectedColors, |
| 345 | reporter, "colorinit"); |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 346 | } |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 347 | |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 348 | // The last step in this test will dirty the mipmaps so do it last |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 349 | check_base_readbacks(dContext, backendTex, skColorType, renderable, testColor, |
| 350 | reporter, "colorinit"); |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 351 | }; |
| 352 | |
| 353 | checkBackendTexture(color); |
| 354 | |
| 355 | // Make sure the initial create work has finished so we can test the update independently. |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 356 | wait_on_backend_work_to_finish(dContext, finishedBECreate); |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 357 | |
| 358 | SkColor4f newColor = {color.fB , color.fR, color.fG, color.fA }; |
| 359 | |
Greg Daniel | 373d7dd | 2020-07-21 10:41:50 -0400 | [diff] [blame] | 360 | dContext->updateBackendTexture(backendTex, skColorType, newColor, mark_signaled, |
| 361 | finishedBECreate); |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 362 | |
| 363 | checkBackendTexture(newColor); |
| 364 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 365 | delete_backend_texture(dContext, backendTex, finishedBECreate); |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 366 | } |
| 367 | |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 368 | // Draw the backend texture (wrapped in an SkImage) into an RGBA surface, attempting to access |
| 369 | // all the mipMap levels. |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 370 | static void check_mipmaps(GrDirectContext* dContext, const GrBackendTexture& backendTex, |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 371 | SkColorType skColorType, const SkColor4f expectedColors[6], |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 372 | skiatest::Reporter* reporter, const char* label) { |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 373 | |
| 374 | #ifdef SK_GL |
| 375 | // skbug.com/9141 (RGBA_F32 mipmaps appear to be broken on some Mali devices) |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 376 | if (GrBackendApi::kOpenGL == dContext->backend()) { |
| 377 | GrGLGpu* glGPU = static_cast<GrGLGpu*>(dContext->priv().getGpu()); |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 378 | |
| 379 | if (kRGBA_F32_SkColorType == skColorType && |
| 380 | kGLES_GrGLStandard == glGPU->ctxInfo().standard()) { |
| 381 | return; |
| 382 | } |
| 383 | } |
| 384 | #endif |
| 385 | |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 386 | if (isRGB(backendTex.getBackendFormat())) { |
| 387 | // readPixels is busted for the RGB backend format (skbug.com/8862) |
| 388 | // TODO: add a GrColorType::kRGB_888 to fix the situation |
| 389 | return; |
| 390 | } |
| 391 | |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 392 | SkAlphaType at = SkColorTypeIsAlwaysOpaque(skColorType) ? kOpaque_SkAlphaType |
| 393 | : kPremul_SkAlphaType; |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 394 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 395 | sk_sp<SkImage> img = SkImage::MakeFromTexture(dContext, |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 396 | backendTex, |
| 397 | kTopLeft_GrSurfaceOrigin, |
| 398 | skColorType, |
| 399 | at, |
| 400 | nullptr); |
| 401 | if (!img) { |
| 402 | return; |
| 403 | } |
| 404 | |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 405 | SkImageInfo readbackSurfaceII = SkImageInfo::Make(32, 32, kRGBA_8888_SkColorType, |
| 406 | kPremul_SkAlphaType); |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 407 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 408 | sk_sp<SkSurface> surf = SkSurface::MakeRenderTarget(dContext, |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 409 | SkBudgeted::kNo, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 410 | readbackSurfaceII, 1, |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 411 | kTopLeft_GrSurfaceOrigin, |
| 412 | nullptr); |
| 413 | if (!surf) { |
| 414 | return; |
| 415 | } |
| 416 | |
| 417 | SkCanvas* canvas = surf->getCanvas(); |
| 418 | |
| 419 | SkPaint p; |
| 420 | p.setFilterQuality(kHigh_SkFilterQuality); |
| 421 | |
| 422 | int numMipLevels = 6; |
| 423 | |
| 424 | for (int i = 0, rectSize = 32; i < numMipLevels; ++i, rectSize /= 2) { |
| 425 | SkASSERT(rectSize >= 1); |
| 426 | |
| 427 | SkRect r = SkRect::MakeWH(rectSize, rectSize); |
| 428 | canvas->clear(SK_ColorTRANSPARENT); |
| 429 | canvas->drawImageRect(img, r, &p); |
| 430 | |
| 431 | SkImageInfo readbackII = SkImageInfo::Make(rectSize, rectSize, |
| 432 | kRGBA_8888_SkColorType, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 433 | kUnpremul_SkAlphaType); |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 434 | SkAutoPixmapStorage actual2; |
| 435 | SkAssertResult(actual2.tryAlloc(readbackII)); |
| 436 | actual2.erase(SkColors::kTransparent); |
| 437 | |
| 438 | bool result = surf->readPixels(actual2, 0, 0); |
| 439 | REPORTER_ASSERT(reporter, result); |
| 440 | |
Robert Phillips | ee94693 | 2019-12-18 11:16:17 -0500 | [diff] [blame] | 441 | SkString str; |
| 442 | str.appendf("mip-level %d", i); |
| 443 | |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 444 | check_solid_pixmap(reporter, expectedColors[i], actual2, skColorType, |
Robert Phillips | ee94693 | 2019-12-18 11:16:17 -0500 | [diff] [blame] | 445 | label, str.c_str()); |
Robert Phillips | c1dbb4b | 2019-09-24 16:32:35 -0400 | [diff] [blame] | 446 | } |
| 447 | } |
| 448 | |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 449 | static int make_pixmaps(SkColorType skColorType, GrMipmapped mipMapped, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 450 | const SkColor4f colors[6], SkAutoPixmapStorage pixmaps[6]) { |
| 451 | int levelSize = 32; |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 452 | int numMipLevels = mipMapped == GrMipmapped::kYes ? 6 : 1; |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 453 | SkAlphaType at = SkColorTypeIsAlwaysOpaque(skColorType) ? kOpaque_SkAlphaType |
| 454 | : kPremul_SkAlphaType; |
| 455 | for (int level = 0; level < numMipLevels; ++level) { |
| 456 | SkImageInfo ii = SkImageInfo::Make(levelSize, levelSize, skColorType, at); |
| 457 | pixmaps[level].alloc(ii); |
| 458 | pixmaps[level].erase(colors[level]); |
| 459 | levelSize /= 2; |
| 460 | } |
| 461 | return numMipLevels; |
| 462 | } |
| 463 | |
| 464 | // Test initialization of GrBackendObjects using SkPixmaps |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 465 | static void test_pixmap_init(GrDirectContext* dContext, |
| 466 | skiatest::Reporter* reporter, |
| 467 | std::function<GrBackendTexture (GrDirectContext*, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 468 | const SkPixmap srcData[], |
| 469 | int numLevels, |
| 470 | GrRenderable)> create, |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 471 | SkColorType skColorType, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 472 | GrMipmapped mipMapped, |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 473 | GrRenderable renderable, |
| 474 | bool* finishedBECreate) { |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 475 | SkAutoPixmapStorage pixmapMem[6]; |
| 476 | SkColor4f colors[6] = { |
| 477 | { 1.0f, 0.0f, 0.0f, 1.0f }, // R |
| 478 | { 0.0f, 1.0f, 0.0f, 0.9f }, // G |
| 479 | { 0.0f, 0.0f, 1.0f, 0.7f }, // B |
| 480 | { 0.0f, 1.0f, 1.0f, 0.5f }, // C |
| 481 | { 1.0f, 0.0f, 1.0f, 0.3f }, // M |
| 482 | { 1.0f, 1.0f, 0.0f, 0.2f }, // Y |
| 483 | }; |
| 484 | |
| 485 | int numMipLevels = make_pixmaps(skColorType, mipMapped, colors, pixmapMem); |
| 486 | SkASSERT(numMipLevels); |
| 487 | |
| 488 | // TODO: this is tedious. Should we pass in an array of SkBitmaps instead? |
| 489 | SkPixmap pixmaps[6]; |
| 490 | for (int i = 0; i < numMipLevels; ++i) { |
| 491 | pixmaps[i].reset(pixmapMem[i].info(), pixmapMem[i].addr(), pixmapMem[i].rowBytes()); |
| 492 | } |
| 493 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 494 | GrBackendTexture backendTex = create(dContext, pixmaps, numMipLevels, renderable); |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 495 | if (!backendTex.isValid()) { |
| 496 | // errors here should be reported by the test_wrapping test |
| 497 | return; |
| 498 | } |
| 499 | |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 500 | if (skColorType == kBGRA_8888_SkColorType && !isBGRA8(backendTex.getBackendFormat())) { |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 501 | // When kBGRA is backed by an RGBA something goes wrong in the swizzling |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 502 | delete_backend_texture(dContext, backendTex, finishedBECreate); |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 503 | return; |
| 504 | } |
| 505 | |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 506 | auto checkBackendTexture = [&](SkColor4f colors[6]) { |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 507 | if (mipMapped == GrMipmapped::kYes) { |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 508 | SkColor4f expectedColors[6] = { |
| 509 | get_expected_color(colors[0], skColorType), |
| 510 | get_expected_color(colors[1], skColorType), |
| 511 | get_expected_color(colors[2], skColorType), |
| 512 | get_expected_color(colors[3], skColorType), |
| 513 | get_expected_color(colors[4], skColorType), |
| 514 | get_expected_color(colors[5], skColorType), |
| 515 | }; |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 516 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 517 | check_mipmaps(dContext, backendTex, skColorType, expectedColors, reporter, "pixmap"); |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | // The last step in this test will dirty the mipmaps so do it last |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 521 | check_base_readbacks(dContext, backendTex, skColorType, renderable, colors[0], reporter, |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 522 | "pixmap"); |
| 523 | }; |
| 524 | |
| 525 | checkBackendTexture(colors); |
| 526 | |
| 527 | // Make sure the initial create work has finished so we can test the update independently. |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 528 | wait_on_backend_work_to_finish(dContext, finishedBECreate); |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 529 | |
| 530 | SkColor4f colorsNew[6] = { |
| 531 | {1.0f, 1.0f, 0.0f, 0.2f}, // Y |
| 532 | {1.0f, 0.0f, 0.0f, 1.0f}, // R |
| 533 | {0.0f, 1.0f, 0.0f, 0.9f}, // G |
| 534 | {0.0f, 0.0f, 1.0f, 0.7f}, // B |
| 535 | {0.0f, 1.0f, 1.0f, 0.5f}, // C |
| 536 | {1.0f, 0.0f, 1.0f, 0.3f}, // M |
| 537 | }; |
| 538 | make_pixmaps(skColorType, mipMapped, colorsNew, pixmapMem); |
| 539 | for (int i = 0; i < numMipLevels; ++i) { |
| 540 | pixmaps[i].reset(pixmapMem[i].info(), pixmapMem[i].addr(), pixmapMem[i].rowBytes()); |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 541 | } |
| 542 | |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 543 | // Upload new data and make sure everything still works |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 544 | dContext->updateBackendTexture(backendTex, pixmaps, numMipLevels, mark_signaled, |
| 545 | finishedBECreate); |
Greg Daniel | b2365d8 | 2020-05-13 15:32:04 -0400 | [diff] [blame] | 546 | |
| 547 | checkBackendTexture(colorsNew); |
| 548 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 549 | delete_backend_texture(dContext, backendTex, finishedBECreate); |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 550 | } |
| 551 | |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 552 | enum class VkLayout { |
| 553 | kUndefined, |
| 554 | kReadOnlyOptimal, |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 555 | }; |
| 556 | |
| 557 | void check_vk_layout(const GrBackendTexture& backendTex, VkLayout layout) { |
| 558 | #if defined(SK_VULKAN) && defined(SK_DEBUG) |
| 559 | VkImageLayout expected; |
| 560 | |
| 561 | switch (layout) { |
| 562 | case VkLayout::kUndefined: |
| 563 | expected = VK_IMAGE_LAYOUT_UNDEFINED; |
| 564 | break; |
| 565 | case VkLayout::kReadOnlyOptimal: |
| 566 | expected = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL; |
| 567 | break; |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 568 | default: |
| 569 | SkUNREACHABLE; |
| 570 | } |
| 571 | |
| 572 | GrVkImageInfo vkII; |
| 573 | |
| 574 | if (backendTex.getVkImageInfo(&vkII)) { |
| 575 | SkASSERT(expected == vkII.fImageLayout); |
| 576 | SkASSERT(VK_IMAGE_TILING_OPTIMAL == vkII.fImageTiling); |
| 577 | } |
| 578 | #endif |
| 579 | } |
| 580 | |
| 581 | /////////////////////////////////////////////////////////////////////////////// |
| 582 | // This test is a bit different from the others in this file. It is mainly checking that, for any |
| 583 | // SkSurface we can create in Ganesh, we can also create a backend texture that is compatible with |
| 584 | // its characterization and then create a new surface that wraps that backend texture. |
| 585 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(CharacterizationBackendAllocationTest, reporter, ctxInfo) { |
Robert Phillips | 6d344c3 | 2020-07-06 10:56:46 -0400 | [diff] [blame] | 586 | auto context = ctxInfo.directContext(); |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 587 | |
| 588 | for (int ct = 0; ct <= kLastEnum_SkColorType; ++ct) { |
| 589 | SkColorType colorType = static_cast<SkColorType>(ct); |
| 590 | |
| 591 | SkImageInfo ii = SkImageInfo::Make(32, 32, colorType, kPremul_SkAlphaType); |
| 592 | |
| 593 | for (auto origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin } ) { |
| 594 | for (bool mipMaps : { true, false } ) { |
| 595 | for (int sampleCount : {1, 2}) { |
| 596 | SkSurfaceCharacterization c; |
| 597 | |
| 598 | // Get a characterization, if possible |
| 599 | { |
| 600 | sk_sp<SkSurface> s = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, |
| 601 | ii, sampleCount, |
| 602 | origin, nullptr, mipMaps); |
| 603 | if (!s) { |
| 604 | continue; |
| 605 | } |
| 606 | |
| 607 | if (!s->characterize(&c)) { |
| 608 | continue; |
| 609 | } |
| 610 | |
| 611 | REPORTER_ASSERT(reporter, s->isCompatible(c)); |
| 612 | } |
| 613 | |
| 614 | // Test out uninitialized path |
| 615 | { |
| 616 | GrBackendTexture backendTex = context->createBackendTexture(c); |
| 617 | check_vk_layout(backendTex, VkLayout::kUndefined); |
| 618 | REPORTER_ASSERT(reporter, backendTex.isValid()); |
| 619 | REPORTER_ASSERT(reporter, c.isCompatible(backendTex)); |
| 620 | |
Robert Phillips | d5e80ca | 2019-07-29 14:11:35 -0400 | [diff] [blame] | 621 | { |
| 622 | GrBackendFormat format = context->defaultBackendFormat( |
| 623 | c.imageInfo().colorType(), |
| 624 | GrRenderable::kYes); |
| 625 | REPORTER_ASSERT(reporter, format == backendTex.getBackendFormat()); |
| 626 | } |
| 627 | |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 628 | sk_sp<SkSurface> s2 = SkSurface::MakeFromBackendTexture(context, c, |
| 629 | backendTex); |
| 630 | REPORTER_ASSERT(reporter, s2); |
| 631 | REPORTER_ASSERT(reporter, s2->isCompatible(c)); |
| 632 | |
| 633 | s2 = nullptr; |
| 634 | context->deleteBackendTexture(backendTex); |
| 635 | } |
| 636 | |
| 637 | // Test out color-initialized path |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 638 | |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 639 | { |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 640 | |
| 641 | bool finished = false; |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 642 | GrBackendTexture backendTex = context->createBackendTexture(c, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 643 | SkColors::kRed, |
| 644 | mark_signaled, |
| 645 | &finished); |
Greg Daniel | dddf709 | 2020-05-06 11:52:37 -0400 | [diff] [blame] | 646 | check_vk_layout(backendTex, VkLayout::kReadOnlyOptimal); |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 647 | REPORTER_ASSERT(reporter, backendTex.isValid()); |
| 648 | REPORTER_ASSERT(reporter, c.isCompatible(backendTex)); |
| 649 | |
Robert Phillips | d5e80ca | 2019-07-29 14:11:35 -0400 | [diff] [blame] | 650 | { |
| 651 | GrBackendFormat format = context->defaultBackendFormat( |
| 652 | c.imageInfo().colorType(), |
| 653 | GrRenderable::kYes); |
| 654 | REPORTER_ASSERT(reporter, format == backendTex.getBackendFormat()); |
| 655 | } |
| 656 | |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 657 | sk_sp<SkSurface> s2 = SkSurface::MakeFromBackendTexture(context, c, |
| 658 | backendTex); |
| 659 | REPORTER_ASSERT(reporter, s2); |
| 660 | REPORTER_ASSERT(reporter, s2->isCompatible(c)); |
| 661 | |
| 662 | s2 = nullptr; |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 663 | delete_backend_texture(context, backendTex, &finished); |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 664 | } |
| 665 | } |
| 666 | } |
| 667 | } |
| 668 | } |
| 669 | } |
| 670 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 671 | /////////////////////////////////////////////////////////////////////////////// |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 672 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ColorTypeBackendAllocationTest, reporter, ctxInfo) { |
Robert Phillips | 6d344c3 | 2020-07-06 10:56:46 -0400 | [diff] [blame] | 673 | auto context = ctxInfo.directContext(); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 674 | const GrCaps* caps = context->priv().caps(); |
| 675 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 676 | constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f }; |
Robert Phillips | bd1ef68 | 2019-05-31 12:48:49 -0400 | [diff] [blame] | 677 | constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f }; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 678 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 679 | struct { |
| 680 | SkColorType fColorType; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 681 | SkColor4f fColor; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 682 | } combinations[] = { |
Robert Phillips | ea1b30b | 2019-09-19 16:05:48 -0400 | [diff] [blame] | 683 | { kAlpha_8_SkColorType, kTransCol }, |
| 684 | { kRGB_565_SkColorType, SkColors::kRed }, |
| 685 | { kARGB_4444_SkColorType, SkColors::kGreen }, |
| 686 | { kRGBA_8888_SkColorType, SkColors::kBlue }, |
| 687 | { kRGB_888x_SkColorType, SkColors::kCyan }, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 688 | // TODO: readback is busted when alpha = 0.5f (perhaps premul vs. unpremul) |
Robert Phillips | ea1b30b | 2019-09-19 16:05:48 -0400 | [diff] [blame] | 689 | { kBGRA_8888_SkColorType, { 1, 0, 0, 1.0f } }, |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 690 | // TODO: readback is busted for *10A2 when alpha = 0.5f (perhaps premul vs. unpremul) |
| 691 | { kRGBA_1010102_SkColorType, { 0.25f, 0.5f, 0.75f, 1.0f }}, |
| 692 | { kBGRA_1010102_SkColorType, { 0.25f, 0.5f, 0.75f, 1.0f }}, |
| 693 | // RGB/BGR 101010x have no Ganesh correlate |
Robert Phillips | ea1b30b | 2019-09-19 16:05:48 -0400 | [diff] [blame] | 694 | { kRGB_101010x_SkColorType, { 0, 0.5f, 0, 0.5f } }, |
Mike Klein | f7eb054 | 2020-02-11 12:19:08 -0600 | [diff] [blame] | 695 | { kBGR_101010x_SkColorType, { 0, 0.5f, 0, 0.5f } }, |
Robert Phillips | ea1b30b | 2019-09-19 16:05:48 -0400 | [diff] [blame] | 696 | { kGray_8_SkColorType, kGrayCol }, |
| 697 | { kRGBA_F16Norm_SkColorType, SkColors::kLtGray }, |
| 698 | { kRGBA_F16_SkColorType, SkColors::kYellow }, |
| 699 | { kRGBA_F32_SkColorType, SkColors::kGray }, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 700 | { kR8G8_unorm_SkColorType, { .25f, .75f, 0, 1 } }, |
Robert Phillips | ea1b30b | 2019-09-19 16:05:48 -0400 | [diff] [blame] | 701 | { kR16G16_unorm_SkColorType, SkColors::kGreen }, |
| 702 | { kA16_unorm_SkColorType, kTransCol }, |
| 703 | { kA16_float_SkColorType, kTransCol }, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 704 | { kR16G16_float_SkColorType, { .25f, .75f, 0, 1 } }, |
Robert Phillips | ea1b30b | 2019-09-19 16:05:48 -0400 | [diff] [blame] | 705 | { kR16G16B16A16_unorm_SkColorType,{ .25f, .5f, .75f, 1 } }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 706 | }; |
| 707 | |
Brian Salomon | 4dea72a | 2019-12-18 10:43:10 -0500 | [diff] [blame] | 708 | static_assert(kLastEnum_SkColorType == SK_ARRAY_COUNT(combinations)); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 709 | |
| 710 | for (auto combo : combinations) { |
| 711 | SkColorType colorType = combo.fColorType; |
| 712 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 713 | if (GrBackendApi::kMetal == context->backend()) { |
| 714 | // skbug.com/9086 (Metal caps may not be handling RGBA32 correctly) |
| 715 | if (kRGBA_F32_SkColorType == combo.fColorType) { |
| 716 | continue; |
| 717 | } |
| 718 | } |
| 719 | |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 720 | for (auto mipMapped : { GrMipmapped::kNo, GrMipmapped::kYes }) { |
Brian Salomon | 69100f0 | 2020-07-21 10:49:25 -0400 | [diff] [blame] | 721 | if (GrMipmapped::kYes == mipMapped && !caps->mipmapSupport()) { |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 722 | continue; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 723 | } |
| 724 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 725 | for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) { |
Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 726 | if (!caps->getDefaultBackendFormat(SkColorTypeToGrColorType(colorType), |
| 727 | renderable).isValid()) { |
| 728 | continue; |
| 729 | } |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 730 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 731 | if (GrRenderable::kYes == renderable) { |
| 732 | if (kRGB_888x_SkColorType == combo.fColorType) { |
| 733 | // Ganesh can't perform the blends correctly when rendering this format |
| 734 | continue; |
| 735 | } |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 736 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 737 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 738 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 739 | auto uninitCreateMtd = [colorType](GrDirectContext* dContext, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 740 | GrMipmapped mipMapped, |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 741 | GrRenderable renderable) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 742 | auto result = dContext->createBackendTexture(32, 32, colorType, |
| 743 | mipMapped, renderable, |
| 744 | GrProtected::kNo); |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 745 | check_vk_layout(result, VkLayout::kUndefined); |
Robert Phillips | d5e80ca | 2019-07-29 14:11:35 -0400 | [diff] [blame] | 746 | |
| 747 | #ifdef SK_DEBUG |
| 748 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 749 | GrBackendFormat format = dContext->defaultBackendFormat(colorType, |
| 750 | renderable); |
Robert Phillips | d5e80ca | 2019-07-29 14:11:35 -0400 | [diff] [blame] | 751 | SkASSERT(format == result.getBackendFormat()); |
| 752 | } |
| 753 | #endif |
| 754 | |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 755 | return result; |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 756 | }; |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 757 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 758 | test_wrapping(context, reporter, uninitCreateMtd, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 759 | SkColorTypeToGrColorType(colorType), mipMapped, renderable, |
| 760 | nullptr); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 761 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 762 | |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 763 | bool finishedBackendCreation = false; |
| 764 | bool* finishedPtr = &finishedBackendCreation; |
| 765 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 766 | { |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 767 | |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 768 | auto createWithColorMtd = [colorType, finishedPtr](GrDirectContext* dContext, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 769 | const SkColor4f& color, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 770 | GrMipmapped mipMapped, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 771 | GrRenderable renderable) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 772 | auto result = dContext->createBackendTexture(32, 32, colorType, color, |
| 773 | mipMapped, renderable, |
| 774 | GrProtected::kNo, |
| 775 | mark_signaled, finishedPtr); |
Greg Daniel | dddf709 | 2020-05-06 11:52:37 -0400 | [diff] [blame] | 776 | check_vk_layout(result, VkLayout::kReadOnlyOptimal); |
Robert Phillips | d5e80ca | 2019-07-29 14:11:35 -0400 | [diff] [blame] | 777 | |
| 778 | #ifdef SK_DEBUG |
| 779 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 780 | GrBackendFormat format = dContext->defaultBackendFormat(colorType, |
Robert Phillips | d5e80ca | 2019-07-29 14:11:35 -0400 | [diff] [blame] | 781 | renderable); |
| 782 | SkASSERT(format == result.getBackendFormat()); |
| 783 | } |
| 784 | #endif |
| 785 | |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 786 | return result; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 787 | }; |
Brian Salomon | 85c3d68 | 2019-11-04 15:04:54 -0500 | [diff] [blame] | 788 | // We make our comparison color using SkPixmap::erase(color) on a pixmap of |
| 789 | // combo.fColorType and then calling SkPixmap::readPixels(). erase() will premul |
| 790 | // the color passed to it. However, createBackendTexture() that takes a |
| 791 | // SkColor4f is color type / alpha type unaware and will simply compute |
| 792 | // luminance from the r, g, b, channels. |
| 793 | SkColor4f color = combo.fColor; |
| 794 | if (colorType == kGray_8_SkColorType) { |
| 795 | color = {color.fR * color.fA, |
| 796 | color.fG * color.fA, |
| 797 | color.fB * color.fA, |
| 798 | 1.f}; |
| 799 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 800 | test_color_init(context, reporter, createWithColorMtd, |
Brian Salomon | 85c3d68 | 2019-11-04 15:04:54 -0500 | [diff] [blame] | 801 | SkColorTypeToGrColorType(colorType), color, mipMapped, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 802 | renderable, finishedPtr); |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 803 | } |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 804 | |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 805 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 806 | auto createWithSrcDataMtd = [finishedPtr](GrDirectContext* dContext, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 807 | const SkPixmap srcData[], |
| 808 | int numLevels, |
| 809 | GrRenderable renderable) { |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 810 | SkASSERT(srcData && numLevels); |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 811 | auto result = dContext->createBackendTexture(srcData, numLevels, renderable, |
| 812 | GrProtected::kNo, mark_signaled, |
| 813 | finishedPtr); |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 814 | check_vk_layout(result, VkLayout::kReadOnlyOptimal); |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 815 | #ifdef SK_DEBUG |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 816 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 817 | auto format = dContext->defaultBackendFormat(srcData[0].colorType(), |
| 818 | renderable); |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 819 | SkASSERT(format == result.getBackendFormat()); |
| 820 | } |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 821 | #endif |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 822 | return result; |
| 823 | }; |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 824 | |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 825 | test_pixmap_init(context, reporter, createWithSrcDataMtd, colorType, mipMapped, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 826 | renderable, finishedPtr); |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 827 | } |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 828 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 829 | } |
| 830 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 831 | } |
| 832 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 833 | /////////////////////////////////////////////////////////////////////////////// |
| 834 | #ifdef SK_GL |
| 835 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 836 | DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(GLBackendAllocationTest, reporter, ctxInfo) { |
| 837 | sk_gpu_test::GLTestContext* glCtx = ctxInfo.glContext(); |
| 838 | GrGLStandard standard = glCtx->gl()->fStandard; |
Robert Phillips | 6d344c3 | 2020-07-06 10:56:46 -0400 | [diff] [blame] | 839 | auto context = ctxInfo.directContext(); |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 840 | const GrGLCaps* glCaps = static_cast<const GrGLCaps*>(context->priv().caps()); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 841 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 842 | constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f }; |
Robert Phillips | bd1ef68 | 2019-05-31 12:48:49 -0400 | [diff] [blame] | 843 | constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f }; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 844 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 845 | struct { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 846 | GrColorType fColorType; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 847 | GrGLenum fFormat; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 848 | SkColor4f fColor; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 849 | } combinations[] = { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 850 | { GrColorType::kRGBA_8888, GR_GL_RGBA8, SkColors::kRed }, |
| 851 | { GrColorType::kRGBA_8888_SRGB, GR_GL_SRGB8_ALPHA8, SkColors::kRed }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 852 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 853 | { GrColorType::kRGB_888x, GR_GL_RGBA8, SkColors::kYellow }, |
| 854 | { GrColorType::kRGB_888x, GR_GL_RGB8, SkColors::kCyan }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 855 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 856 | { GrColorType::kBGRA_8888, GR_GL_RGBA8, SkColors::kBlue }, |
| 857 | { GrColorType::kBGRA_8888, GR_GL_BGRA8, SkColors::kBlue }, |
| 858 | // TODO: readback is busted when alpha = 0.5f (perhaps premul vs. unpremul) |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 859 | { GrColorType::kRGBA_1010102, GR_GL_RGB10_A2, { 0.25f, 0.5f, 0.75f, 1.f }}, |
| 860 | { GrColorType::kBGRA_1010102, GR_GL_RGB10_A2, { 0.25f, 0.5f, 0.75f, 1.f }}, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 861 | { GrColorType::kBGR_565, GR_GL_RGB565, SkColors::kRed }, |
| 862 | { GrColorType::kABGR_4444, GR_GL_RGBA4, SkColors::kGreen }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 863 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 864 | { GrColorType::kAlpha_8, GR_GL_ALPHA8, kTransCol }, |
| 865 | { GrColorType::kAlpha_8, GR_GL_R8, kTransCol }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 866 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 867 | { GrColorType::kGray_8, GR_GL_LUMINANCE8, kGrayCol }, |
| 868 | { GrColorType::kGray_8, GR_GL_R8, kGrayCol }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 869 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 870 | { GrColorType::kRGBA_F32, GR_GL_RGBA32F, SkColors::kRed }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 871 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 872 | { GrColorType::kRGBA_F16_Clamped, GR_GL_RGBA16F, SkColors::kLtGray }, |
| 873 | { GrColorType::kRGBA_F16, GR_GL_RGBA16F, SkColors::kYellow }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 874 | |
Robert Phillips | d470e1b | 2019-09-04 15:05:35 -0400 | [diff] [blame] | 875 | { GrColorType::kRG_88, GR_GL_RG8, { 1, 0.5f, 0, 1 } }, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 876 | { GrColorType::kAlpha_F16, GR_GL_R16F, { 1.0f, 0, 0, 0.5f } }, |
| 877 | { GrColorType::kAlpha_F16, GR_GL_LUMINANCE16F, kGrayCol }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 878 | |
Robert Phillips | 429f0d3 | 2019-09-11 17:03:28 -0400 | [diff] [blame] | 879 | { GrColorType::kAlpha_16, GR_GL_R16, kTransCol }, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 880 | { GrColorType::kRG_1616, GR_GL_RG16, SkColors::kYellow }, |
Robert Phillips | 66a4603 | 2019-06-18 08:00:42 -0400 | [diff] [blame] | 881 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 882 | { GrColorType::kRGBA_16161616, GR_GL_RGBA16, SkColors::kLtGray }, |
| 883 | { GrColorType::kRG_F16, GR_GL_RG16F, SkColors::kYellow }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 884 | }; |
| 885 | |
| 886 | for (auto combo : combinations) { |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 887 | for (GrGLenum target : {GR_GL_TEXTURE_2D, GR_GL_TEXTURE_RECTANGLE}) { |
| 888 | GrBackendFormat format = GrBackendFormat::MakeGL(combo.fFormat, target); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 889 | |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 890 | if (!glCaps->isFormatTexturable(format)) { |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 891 | continue; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 892 | } |
| 893 | |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 894 | if (GrColorType::kBGRA_8888 == combo.fColorType || |
| 895 | GrColorType::kBGRA_1010102 == combo.fColorType) { |
| 896 | // We allow using a GL_RGBA8 or GR_GL_RGB10_A2 texture as BGRA on desktop GL but not |
| 897 | // ES |
| 898 | if (kGL_GrGLStandard != standard && |
| 899 | (GR_GL_RGBA8 == combo.fFormat || GR_GL_RGB10_A2 == combo.fFormat)) { |
| 900 | continue; |
| 901 | } |
| 902 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 903 | |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 904 | for (auto mipMapped : {GrMipmapped::kNo, GrMipmapped::kYes}) { |
| 905 | if (GrMipmapped::kYes == mipMapped && |
Brian Salomon | 69100f0 | 2020-07-21 10:49:25 -0400 | [diff] [blame] | 906 | (!glCaps->mipmapSupport() || target == GR_GL_TEXTURE_RECTANGLE)) { |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 907 | continue; |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 908 | } |
| 909 | |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 910 | for (auto renderable : {GrRenderable::kNo, GrRenderable::kYes}) { |
| 911 | if (GrRenderable::kYes == renderable) { |
| 912 | if (!glCaps->isFormatAsColorTypeRenderable(combo.fColorType, format)) { |
| 913 | continue; |
| 914 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 915 | } |
| 916 | |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 917 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 918 | auto uninitCreateMtd = [format](GrDirectContext* dContext, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 919 | GrMipmapped mipMapped, |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 920 | GrRenderable renderable) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 921 | return dContext->createBackendTexture(32, 32, format, mipMapped, |
| 922 | renderable, GrProtected::kNo); |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 923 | }; |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 924 | |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 925 | test_wrapping(context, reporter, uninitCreateMtd, combo.fColorType, |
| 926 | mipMapped, renderable, nullptr); |
Brian Salomon | 85c3d68 | 2019-11-04 15:04:54 -0500 | [diff] [blame] | 927 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 928 | |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 929 | { |
| 930 | // We're creating backend textures without specifying a color type "view" of |
| 931 | // them at the public API level. Therefore, Ganesh will not apply any |
| 932 | // swizzles before writing the color to the texture. However, our validation |
| 933 | // code does rely on interpreting the texture contents via a SkColorType and |
| 934 | // therefore swizzles may be applied during the read step. Ideally we'd |
| 935 | // update our validation code to use a "raw" read that doesn't impose a |
| 936 | // color type but for now we just munge the data we upload to match the |
| 937 | // expectation. |
| 938 | GrSwizzle swizzle; |
| 939 | switch (combo.fColorType) { |
| 940 | case GrColorType::kAlpha_8: |
| 941 | swizzle = GrSwizzle("aaaa"); |
| 942 | break; |
| 943 | case GrColorType::kAlpha_16: |
| 944 | swizzle = GrSwizzle("aaaa"); |
| 945 | break; |
| 946 | case GrColorType::kAlpha_F16: |
| 947 | swizzle = GrSwizzle("aaaa"); |
| 948 | break; |
| 949 | default: |
| 950 | break; |
| 951 | } |
| 952 | |
| 953 | bool finishedBackendCreation = false; |
| 954 | bool* finishedPtr = &finishedBackendCreation; |
| 955 | |
| 956 | auto createWithColorMtd = [format, swizzle, finishedPtr]( |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 957 | GrDirectContext* dContext, |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 958 | const SkColor4f& color, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 959 | GrMipmapped mipMapped, |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 960 | GrRenderable renderable) { |
| 961 | auto swizzledColor = swizzle.applyTo(color); |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 962 | return dContext->createBackendTexture( |
Brian Salomon | 0f39699 | 2020-06-19 19:51:21 -0400 | [diff] [blame] | 963 | 32, 32, format, swizzledColor, mipMapped, renderable, |
| 964 | GrProtected::kNo, mark_signaled, finishedPtr); |
| 965 | }; |
| 966 | // We make our comparison color using SkPixmap::erase(color) on a pixmap of |
| 967 | // combo.fColorType and then calling SkPixmap::readPixels(). erase() will |
| 968 | // premul the color passed to it. However, createBackendTexture() that takes |
| 969 | // a SkColor4f is color type/alpha type unaware and will simply compute |
| 970 | // luminance from the r, g, b, channels. |
| 971 | SkColor4f color = combo.fColor; |
| 972 | if (combo.fColorType == GrColorType::kGray_8) { |
| 973 | color = {color.fR * color.fA, |
| 974 | color.fG * color.fA, |
| 975 | color.fB * color.fA, |
| 976 | 1.f}; |
| 977 | } |
| 978 | |
| 979 | test_color_init(context, reporter, createWithColorMtd, combo.fColorType, |
| 980 | color, mipMapped, renderable, finishedPtr); |
| 981 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 982 | } |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 983 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 984 | } |
| 985 | } |
| 986 | } |
| 987 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 988 | #endif |
| 989 | |
| 990 | /////////////////////////////////////////////////////////////////////////////// |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 991 | |
| 992 | #ifdef SK_VULKAN |
| 993 | |
| 994 | #include "src/gpu/vk/GrVkCaps.h" |
| 995 | |
| 996 | DEF_GPUTEST_FOR_VULKAN_CONTEXT(VkBackendAllocationTest, reporter, ctxInfo) { |
Robert Phillips | 6d344c3 | 2020-07-06 10:56:46 -0400 | [diff] [blame] | 997 | auto context = ctxInfo.directContext(); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 998 | const GrVkCaps* vkCaps = static_cast<const GrVkCaps*>(context->priv().caps()); |
| 999 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1000 | constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f }; |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 1001 | constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 1 }; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1002 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1003 | struct { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1004 | GrColorType fColorType; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1005 | VkFormat fFormat; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1006 | SkColor4f fColor; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1007 | } combinations[] = { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1008 | { GrColorType::kRGBA_8888, VK_FORMAT_R8G8B8A8_UNORM, SkColors::kRed }, |
| 1009 | { GrColorType::kRGBA_8888_SRGB, VK_FORMAT_R8G8B8A8_SRGB, SkColors::kRed }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1010 | |
Robert Phillips | bd1ef68 | 2019-05-31 12:48:49 -0400 | [diff] [blame] | 1011 | // In this configuration (i.e., an RGB_888x colortype with an RGBA8 backing format), |
| 1012 | // there is nothing to tell Skia to make the provided color opaque. Clients will need |
| 1013 | // to provide an opaque initialization color in this case. |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1014 | { GrColorType::kRGB_888x, VK_FORMAT_R8G8B8A8_UNORM, SkColors::kYellow }, |
| 1015 | { GrColorType::kRGB_888x, VK_FORMAT_R8G8B8_UNORM, SkColors::kCyan }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1016 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1017 | { GrColorType::kBGRA_8888, VK_FORMAT_B8G8R8A8_UNORM, SkColors::kBlue }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1018 | |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 1019 | { GrColorType::kRGBA_1010102, VK_FORMAT_A2B10G10R10_UNORM_PACK32, |
| 1020 | { 0.25f, 0.5f, 0.75f, 1.0f }}, |
| 1021 | { GrColorType::kBGRA_1010102, VK_FORMAT_A2R10G10B10_UNORM_PACK32, |
| 1022 | { 0.25f, 0.5f, 0.75f, 1.0f }}, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1023 | { GrColorType::kBGR_565, VK_FORMAT_R5G6B5_UNORM_PACK16, SkColors::kRed }, |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1024 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1025 | { GrColorType::kABGR_4444, VK_FORMAT_R4G4B4A4_UNORM_PACK16, SkColors::kCyan }, |
| 1026 | { GrColorType::kABGR_4444, VK_FORMAT_B4G4R4A4_UNORM_PACK16, SkColors::kYellow }, |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1027 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1028 | { GrColorType::kAlpha_8, VK_FORMAT_R8_UNORM, kTransCol }, |
Robert Phillips | bd1ef68 | 2019-05-31 12:48:49 -0400 | [diff] [blame] | 1029 | // In this config (i.e., a Gray8 color type with an R8 backing format), there is nothing |
| 1030 | // to tell Skia this isn't an Alpha8 color type (so it will initialize the texture with |
| 1031 | // the alpha channel of the color). Clients should, in general, fill all the channels |
| 1032 | // of the provided color with the same value in such cases. |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1033 | { GrColorType::kGray_8, VK_FORMAT_R8_UNORM, kGrayCol }, |
Robert Phillips | bd1ef68 | 2019-05-31 12:48:49 -0400 | [diff] [blame] | 1034 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1035 | { GrColorType::kRGBA_F16_Clamped, VK_FORMAT_R16G16B16A16_SFLOAT, SkColors::kLtGray }, |
| 1036 | { GrColorType::kRGBA_F16, VK_FORMAT_R16G16B16A16_SFLOAT, SkColors::kYellow }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1037 | |
Robert Phillips | d470e1b | 2019-09-04 15:05:35 -0400 | [diff] [blame] | 1038 | { GrColorType::kRG_88, VK_FORMAT_R8G8_UNORM, { 1, 0.5f, 0, 1 } }, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1039 | { GrColorType::kAlpha_F16, VK_FORMAT_R16_SFLOAT, { 1.0f, 0, 0, 0.5f }}, |
| 1040 | |
Robert Phillips | 429f0d3 | 2019-09-11 17:03:28 -0400 | [diff] [blame] | 1041 | { GrColorType::kAlpha_16, VK_FORMAT_R16_UNORM, kTransCol }, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1042 | { GrColorType::kRG_1616, VK_FORMAT_R16G16_UNORM, SkColors::kYellow }, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1043 | { GrColorType::kRGBA_16161616, VK_FORMAT_R16G16B16A16_UNORM, SkColors::kLtGray }, |
| 1044 | { GrColorType::kRG_F16, VK_FORMAT_R16G16_SFLOAT, SkColors::kYellow }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1045 | }; |
| 1046 | |
| 1047 | for (auto combo : combinations) { |
Greg Daniel | 2f2caea | 2019-07-08 14:24:47 -0400 | [diff] [blame] | 1048 | if (!vkCaps->isVkFormatTexturable(combo.fFormat)) { |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1049 | continue; |
| 1050 | } |
| 1051 | |
| 1052 | GrBackendFormat format = GrBackendFormat::MakeVk(combo.fFormat); |
| 1053 | |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 1054 | for (auto mipMapped : { GrMipmapped::kNo, GrMipmapped::kYes }) { |
Brian Salomon | 69100f0 | 2020-07-21 10:49:25 -0400 | [diff] [blame] | 1055 | if (GrMipmapped::kYes == mipMapped && !vkCaps->mipmapSupport()) { |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1056 | continue; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1057 | } |
| 1058 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1059 | for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) { |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1060 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1061 | if (GrRenderable::kYes == renderable) { |
Brian Salomon | 4eb38b7 | 2019-08-05 12:58:39 -0400 | [diff] [blame] | 1062 | // We must also check whether we allow rendering to the format using the |
| 1063 | // color type. |
Greg Daniel | 900583a | 2019-08-06 12:05:31 -0400 | [diff] [blame] | 1064 | if (!vkCaps->isFormatAsColorTypeRenderable( |
| 1065 | combo.fColorType, GrBackendFormat::MakeVk(combo.fFormat), 1)) { |
Brian Salomon | 4eb38b7 | 2019-08-05 12:58:39 -0400 | [diff] [blame] | 1066 | continue; |
| 1067 | } |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1068 | } |
| 1069 | |
Robert Phillips | d34691b | 2019-09-24 13:38:43 -0400 | [diff] [blame] | 1070 | { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 1071 | auto uninitCreateMtd = [format](GrDirectContext* dContext, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 1072 | GrMipmapped mipMapped, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1073 | GrRenderable renderable) { |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 1074 | GrBackendTexture beTex = dContext->createBackendTexture(32, 32, format, |
| 1075 | mipMapped, |
| 1076 | renderable, |
| 1077 | GrProtected::kNo); |
Robert Phillips | 02dc030 | 2019-07-02 17:58:27 -0400 | [diff] [blame] | 1078 | check_vk_layout(beTex, VkLayout::kUndefined); |
Robert Phillips | d1d869d | 2019-06-07 14:21:31 -0400 | [diff] [blame] | 1079 | return beTex; |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 1080 | }; |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1081 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 1082 | test_wrapping(context, reporter, uninitCreateMtd, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 1083 | combo.fColorType, mipMapped, renderable, nullptr); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 1084 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1085 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1086 | { |
Brian Salomon | b450f3b | 2019-07-09 09:36:51 -0400 | [diff] [blame] | 1087 | // We're creating backend textures without specifying a color type "view" of |
| 1088 | // them at the public API level. Therefore, Ganesh will not apply any swizzles |
| 1089 | // before writing the color to the texture. However, our validation code does |
| 1090 | // rely on interpreting the texture contents via a SkColorType and therefore |
| 1091 | // swizzles may be applied during the read step. |
| 1092 | // Ideally we'd update our validation code to use a "raw" read that doesn't |
| 1093 | // impose a color type but for now we just munge the data we upload to match the |
| 1094 | // expectation. |
| 1095 | GrSwizzle swizzle; |
| 1096 | switch (combo.fColorType) { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1097 | case GrColorType::kAlpha_8: |
Brian Salomon | b450f3b | 2019-07-09 09:36:51 -0400 | [diff] [blame] | 1098 | SkASSERT(combo.fFormat == VK_FORMAT_R8_UNORM); |
| 1099 | swizzle = GrSwizzle("aaaa"); |
| 1100 | break; |
Robert Phillips | 429f0d3 | 2019-09-11 17:03:28 -0400 | [diff] [blame] | 1101 | case GrColorType::kAlpha_16: |
| 1102 | SkASSERT(combo.fFormat == VK_FORMAT_R16_UNORM); |
| 1103 | swizzle = GrSwizzle("aaaa"); |
| 1104 | break; |
Robert Phillips | 17a3a0b | 2019-09-18 13:56:54 -0400 | [diff] [blame] | 1105 | case GrColorType::kAlpha_F16: |
| 1106 | SkASSERT(combo.fFormat == VK_FORMAT_R16_SFLOAT); |
| 1107 | swizzle = GrSwizzle("aaaa"); |
| 1108 | break; |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 1109 | case GrColorType::kABGR_4444: |
Brian Salomon | b450f3b | 2019-07-09 09:36:51 -0400 | [diff] [blame] | 1110 | if (combo.fFormat == VK_FORMAT_B4G4R4A4_UNORM_PACK16) { |
| 1111 | swizzle = GrSwizzle("bgra"); |
| 1112 | } |
| 1113 | break; |
| 1114 | default: |
| 1115 | swizzle = GrSwizzle("rgba"); |
| 1116 | break; |
| 1117 | } |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 1118 | |
| 1119 | bool finishedBackendCreation = false; |
| 1120 | bool* finishedPtr = &finishedBackendCreation; |
| 1121 | |
| 1122 | auto createWithColorMtd = [format, swizzle, finishedPtr]( |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 1123 | GrDirectContext* dContext, |
| 1124 | const SkColor4f& color, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 1125 | GrMipmapped mipMapped, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 1126 | GrRenderable renderable) { |
Brian Salomon | b450f3b | 2019-07-09 09:36:51 -0400 | [diff] [blame] | 1127 | auto swizzledColor = swizzle.applyTo(color); |
Robert Phillips | fe4b481 | 2020-07-17 14:15:51 -0400 | [diff] [blame] | 1128 | GrBackendTexture beTex = dContext->createBackendTexture(32, 32, format, |
| 1129 | swizzledColor, |
| 1130 | mipMapped, |
| 1131 | renderable, |
| 1132 | GrProtected::kNo, |
| 1133 | mark_signaled, |
| 1134 | finishedPtr); |
Greg Daniel | dddf709 | 2020-05-06 11:52:37 -0400 | [diff] [blame] | 1135 | check_vk_layout(beTex, VkLayout::kReadOnlyOptimal); |
Robert Phillips | d1d869d | 2019-06-07 14:21:31 -0400 | [diff] [blame] | 1136 | return beTex; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1137 | }; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1138 | test_color_init(context, reporter, createWithColorMtd, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 1139 | combo.fColorType, combo.fColor, mipMapped, renderable, |
| 1140 | finishedPtr); |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 1141 | } |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 1142 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 1143 | } |
| 1144 | } |
| 1145 | } |
| 1146 | |
| 1147 | #endif |