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 | |
| 8 | #include "include/gpu/GrContext.h" |
| 9 | #include "src/gpu/GrContextPriv.h" |
| 10 | #include "tests/Test.h" |
| 11 | |
Aaron O'Mullan | 829b6a0 | 2019-07-08 01:31:14 +0200 | [diff] [blame] | 12 | #import <Metal/Metal.h> |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 13 | #include "src/gpu/mtl/GrMtlCaps.h" |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 14 | |
| 15 | // In BackendAllocationTest.cpp |
| 16 | void test_wrapping(GrContext* context, skiatest::Reporter* reporter, |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 17 | std::function<GrBackendTexture (GrContext*, |
| 18 | GrMipMapped, |
| 19 | GrRenderable)> create, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 20 | GrColorType colorType, GrMipMapped mipMapped, GrRenderable renderable, |
| 21 | bool* finishedBackendCreation); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 22 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 23 | void test_color_init(GrContext* context, skiatest::Reporter* reporter, |
| 24 | std::function<GrBackendTexture (GrContext*, |
| 25 | const SkColor4f&, |
| 26 | GrMipMapped, |
| 27 | GrRenderable)> create, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 28 | GrColorType colorType, const SkColor4f& color, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 29 | GrMipMapped mipMapped, GrRenderable renderable, |
| 30 | bool* finishedBackendCreation); |
| 31 | |
| 32 | static void mark_signaled(void* context) { |
| 33 | *(bool*)context = true; |
| 34 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 35 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 36 | DEF_GPUTEST_FOR_METAL_CONTEXT(MtlBackendAllocationTest, reporter, ctxInfo) { |
| 37 | GrContext* context = ctxInfo.grContext(); |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 38 | const GrMtlCaps* mtlCaps = static_cast<const GrMtlCaps*>(context->priv().caps()); |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 39 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 40 | constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f }; |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 41 | constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f }; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 42 | |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 43 | struct { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 44 | GrColorType fColorType; |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 45 | MTLPixelFormat fFormat; |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 46 | SkColor4f fColor; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 47 | } combinations[] = { |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 48 | { GrColorType::kRGBA_8888, MTLPixelFormatRGBA8Unorm, SkColors::kRed }, |
| 49 | { GrColorType::kRGBA_8888_SRGB, MTLPixelFormatRGBA8Unorm_sRGB, SkColors::kRed }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 50 | |
Robert Phillips | 143987e | 2019-08-14 10:43:28 -0400 | [diff] [blame] | 51 | // In this configuration (i.e., an RGB_888x colortype with an RGBA8 backing format), |
| 52 | // there is nothing to tell Skia to make the provided color opaque. Clients will need |
| 53 | // to provide an opaque initialization color in this case. |
| 54 | { GrColorType::kRGB_888x, MTLPixelFormatRGBA8Unorm, SkColors::kYellow }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 55 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 56 | { GrColorType::kBGRA_8888, MTLPixelFormatBGRA8Unorm, SkColors::kBlue }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 57 | |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 58 | { GrColorType::kRGBA_1010102, MTLPixelFormatRGB10A2Unorm, |
| 59 | { 0.25f, 0.5f, 0.75f, 1.0f } }, |
Robert Phillips | ef41d50 | 2020-05-01 09:43:04 -0400 | [diff] [blame] | 60 | #ifdef SK_BUILD_FOR_MAC |
Robert Phillips | 9a30ee0 | 2020-04-29 08:58:39 -0400 | [diff] [blame] | 61 | { GrColorType::kBGRA_1010102, MTLPixelFormatBGR10A2Unorm, |
| 62 | { 0.25f, 0.5f, 0.75f, 1.0f } }, |
Robert Phillips | ef41d50 | 2020-05-01 09:43:04 -0400 | [diff] [blame] | 63 | #endif |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 64 | #ifdef SK_BUILD_FOR_IOS |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 65 | { GrColorType::kBGR_565, MTLPixelFormatB5G6R5Unorm, SkColors::kRed }, |
| 66 | { GrColorType::kABGR_4444, MTLPixelFormatABGR4Unorm, SkColors::kGreen }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 67 | #endif |
| 68 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 69 | { GrColorType::kAlpha_8, MTLPixelFormatA8Unorm, kTransCol }, |
| 70 | { GrColorType::kAlpha_8, MTLPixelFormatR8Unorm, kTransCol }, |
Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame] | 71 | { GrColorType::kGray_8, MTLPixelFormatR8Unorm, kGrayCol }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 72 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 73 | { GrColorType::kRGBA_F16_Clamped, MTLPixelFormatRGBA16Float, SkColors::kLtGray }, |
| 74 | { GrColorType::kRGBA_F16, MTLPixelFormatRGBA16Float, SkColors::kYellow }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 75 | |
Robert Phillips | d470e1b | 2019-09-04 15:05:35 -0400 | [diff] [blame] | 76 | { GrColorType::kRG_88, MTLPixelFormatRG8Unorm, { 0.5f, 0.5f, 0, 1 } }, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 77 | { GrColorType::kAlpha_F16, MTLPixelFormatR16Float, { 1.0f, 0, 0, 0.5f } }, |
| 78 | |
Robert Phillips | 429f0d3 | 2019-09-11 17:03:28 -0400 | [diff] [blame] | 79 | { GrColorType::kAlpha_16, MTLPixelFormatR16Unorm, kTransCol }, |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 80 | { GrColorType::kRG_1616, MTLPixelFormatRG16Unorm, SkColors::kYellow }, |
| 81 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 82 | { GrColorType::kRGBA_16161616, MTLPixelFormatRGBA16Unorm, SkColors::kLtGray }, |
| 83 | { GrColorType::kRG_F16, MTLPixelFormatRG16Float, SkColors::kYellow }, |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | for (auto combo : combinations) { |
| 87 | GrBackendFormat format = GrBackendFormat::MakeMtl(combo.fFormat); |
| 88 | |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 89 | if (!mtlCaps->isFormatTexturable(combo.fFormat)) { |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 90 | continue; |
| 91 | } |
| 92 | |
| 93 | // skbug.com/9086 (Metal caps may not be handling RGBA32 correctly) |
Robert Phillips | b7f95d1 | 2019-07-26 11:13:19 -0400 | [diff] [blame] | 94 | if (GrColorType::kRGBA_F32 == combo.fColorType) { |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 95 | continue; |
| 96 | } |
| 97 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 98 | for (auto mipMapped : { GrMipMapped::kNo, GrMipMapped::kYes }) { |
| 99 | if (GrMipMapped::kYes == mipMapped && !mtlCaps->mipMapSupport()) { |
| 100 | continue; |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 101 | } |
| 102 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 103 | for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) { |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 104 | |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 105 | if (GrRenderable::kYes == renderable) { |
Greg Daniel | ea6bb44 | 2019-08-05 15:38:40 -0400 | [diff] [blame] | 106 | // We must also check whether we allow rendering to the format using the |
| 107 | // color type. |
Greg Daniel | 900583a | 2019-08-06 12:05:31 -0400 | [diff] [blame] | 108 | if (!mtlCaps->isFormatAsColorTypeRenderable( |
| 109 | combo.fColorType, GrBackendFormat::MakeMtl(combo.fFormat), 1)) { |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 110 | continue; |
| 111 | } |
| 112 | } |
| 113 | |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 114 | { |
| 115 | auto uninitCreateMtd = [format](GrContext* context, |
| 116 | GrMipMapped mipMapped, |
| 117 | GrRenderable renderable) { |
| 118 | return context->createBackendTexture(32, 32, format, |
Emircan Uysaler | 23ca4e7 | 2019-06-24 10:53:09 -0400 | [diff] [blame] | 119 | mipMapped, renderable, |
| 120 | GrProtected::kNo); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 121 | }; |
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 | test_wrapping(context, reporter, uninitCreateMtd, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 124 | combo.fColorType, mipMapped, renderable, nullptr); |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 125 | } |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 126 | |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 127 | { |
Brian Salomon | 85c3d68 | 2019-11-04 15:04:54 -0500 | [diff] [blame] | 128 | // We're creating backend textures without specifying a color type "view" of |
| 129 | // them at the public API level. Therefore, Ganesh will not apply any swizzles |
| 130 | // before writing the color to the texture. However, our validation code does |
| 131 | // rely on interpreting the texture contents via a SkColorType and therefore |
| 132 | // swizzles may be applied during the read step. |
| 133 | // Ideally we'd update our validation code to use a "raw" read that doesn't |
| 134 | // impose a color type but for now we just munge the data we upload to match the |
| 135 | // expectation. |
| 136 | GrSwizzle swizzle; |
| 137 | switch (combo.fColorType) { |
| 138 | case GrColorType::kAlpha_8: |
| 139 | swizzle = GrSwizzle("aaaa"); |
| 140 | break; |
| 141 | case GrColorType::kAlpha_16: |
| 142 | swizzle = GrSwizzle("aaaa"); |
| 143 | break; |
| 144 | case GrColorType::kAlpha_F16: |
| 145 | swizzle = GrSwizzle("aaaa"); |
| 146 | break; |
| 147 | default: |
| 148 | break; |
| 149 | } |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 150 | |
| 151 | bool finishedBackendCreation = false; |
| 152 | bool* finishedPtr = &finishedBackendCreation; |
| 153 | |
| 154 | auto createWithColorMtd = [format, swizzle, finishedPtr]( |
| 155 | GrContext* context, const SkColor4f& color, GrMipMapped mipMapped, |
| 156 | GrRenderable renderable) { |
Brian Salomon | 85c3d68 | 2019-11-04 15:04:54 -0500 | [diff] [blame] | 157 | auto swizzledColor = swizzle.applyTo(color); |
| 158 | return context->createBackendTexture(32, 32, format, swizzledColor, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 159 | mipMapped, renderable, |
| 160 | GrProtected::kNo, |
| 161 | mark_signaled, finishedPtr); |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 162 | }; |
Brian Salomon | 85c3d68 | 2019-11-04 15:04:54 -0500 | [diff] [blame] | 163 | // We make our comparison color using SkPixmap::erase(color) on a pixmap of |
| 164 | // combo.fColorType and then calling SkPixmap::readPixels(). erase() will premul |
| 165 | // the color passed to it. However, createBackendTexture() that takes a |
| 166 | // SkColor4f is color type/alpha type unaware and will simply compute luminance |
| 167 | // from the r, g, b, channels. |
| 168 | SkColor4f color = combo.fColor; |
| 169 | if (combo.fColorType == GrColorType::kGray_8) { |
| 170 | color = {color.fR * color.fA, |
| 171 | color.fG * color.fA, |
| 172 | color.fB * color.fA, |
| 173 | 1.f}; |
| 174 | } |
| 175 | test_color_init(context, reporter, createWithColorMtd, combo.fColorType, color, |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 176 | mipMapped, renderable, finishedPtr); |
Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 177 | } |
Robert Phillips | efb9f14 | 2019-05-17 14:19:44 -0400 | [diff] [blame] | 178 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 179 | } |
Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 180 | } |
Robert Phillips | 0c6daf0 | 2019-05-16 12:43:11 -0400 | [diff] [blame] | 181 | } |