Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 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 | */ |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 7 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/core/SkTypes.h" |
Derek Sollenberger | 7a86987 | 2017-06-27 15:37:25 -0400 | [diff] [blame] | 9 | |
| 10 | #if defined(SK_BUILD_FOR_ANDROID) && __ANDROID_API__ >= 26 |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 11 | #define GL_GLEXT_PROTOTYPES |
| 12 | #define EGL_EGLEXT_PROTOTYPES |
Greg Daniel | 54bfb18 | 2018-11-20 17:12:36 -0500 | [diff] [blame] | 13 | |
Greg Daniel | 54bfb18 | 2018-11-20 17:12:36 -0500 | [diff] [blame] | 14 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 15 | #include "src/gpu/GrAHardwareBufferImageGenerator.h" |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 16 | |
Derek Sollenberger | 7a86987 | 2017-06-27 15:37:25 -0400 | [diff] [blame] | 17 | #include <android/hardware_buffer.h> |
| 18 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 19 | #include "include/gpu/GrBackendSurface.h" |
| 20 | #include "include/gpu/GrContext.h" |
| 21 | #include "include/gpu/GrTexture.h" |
| 22 | #include "include/gpu/gl/GrGLTypes.h" |
| 23 | #include "include/private/GrRecordingContext.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 24 | #include "src/core/SkExchange.h" |
Ben Wagner | 21bca28 | 2019-05-15 10:15:52 -0400 | [diff] [blame] | 25 | #include "src/core/SkMessageBus.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 26 | #include "src/gpu/GrAHardwareBufferUtils.h" |
| 27 | #include "src/gpu/GrContextPriv.h" |
| 28 | #include "src/gpu/GrProxyProvider.h" |
| 29 | #include "src/gpu/GrRecordingContextPriv.h" |
| 30 | #include "src/gpu/GrResourceCache.h" |
| 31 | #include "src/gpu/GrResourceProvider.h" |
| 32 | #include "src/gpu/GrResourceProviderPriv.h" |
Greg Daniel | f91aeb2 | 2019-06-18 09:58:02 -0400 | [diff] [blame] | 33 | #include "src/gpu/GrTextureProxy.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 34 | #include "src/gpu/gl/GrGLDefines.h" |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 35 | |
| 36 | #include <EGL/egl.h> |
| 37 | #include <EGL/eglext.h> |
| 38 | #include <GLES/gl.h> |
| 39 | #include <GLES/glext.h> |
| 40 | |
Greg Daniel | 637c06a | 2018-09-12 09:44:25 -0400 | [diff] [blame] | 41 | #ifdef SK_VULKAN |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 42 | #include "include/gpu/vk/GrVkExtensions.h" |
| 43 | #include "src/gpu/vk/GrVkGpu.h" |
Greg Daniel | 637c06a | 2018-09-12 09:44:25 -0400 | [diff] [blame] | 44 | #endif |
| 45 | |
Stan Iliev | c01b5c7 | 2018-08-28 10:18:19 -0400 | [diff] [blame] | 46 | #define PROT_CONTENT_EXT_STR "EGL_EXT_protected_content" |
| 47 | #define EGL_PROTECTED_CONTENT_EXT 0x32C0 |
| 48 | |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 49 | std::unique_ptr<SkImageGenerator> GrAHardwareBufferImageGenerator::Make( |
Stan Iliev | 505dd57 | 2018-09-13 14:20:03 -0400 | [diff] [blame] | 50 | AHardwareBuffer* graphicBuffer, SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace, |
| 51 | GrSurfaceOrigin surfaceOrigin) { |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 52 | AHardwareBuffer_Desc bufferDesc; |
| 53 | AHardwareBuffer_describe(graphicBuffer, &bufferDesc); |
Greg Daniel | 173464d | 2019-02-06 15:30:34 -0500 | [diff] [blame] | 54 | |
| 55 | SkColorType colorType = |
| 56 | GrAHardwareBufferUtils::GetSkColorTypeFromBufferFormat(bufferDesc.format); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 57 | SkImageInfo info = SkImageInfo::Make(bufferDesc.width, bufferDesc.height, colorType, |
| 58 | alphaType, std::move(colorSpace)); |
Greg Daniel | 173464d | 2019-02-06 15:30:34 -0500 | [diff] [blame] | 59 | |
Stan Iliev | c01b5c7 | 2018-08-28 10:18:19 -0400 | [diff] [blame] | 60 | bool createProtectedImage = 0 != (bufferDesc.usage & AHARDWAREBUFFER_USAGE_PROTECTED_CONTENT); |
Stan Iliev | 505dd57 | 2018-09-13 14:20:03 -0400 | [diff] [blame] | 61 | return std::unique_ptr<SkImageGenerator>(new GrAHardwareBufferImageGenerator( |
| 62 | info, graphicBuffer, alphaType, createProtectedImage, |
| 63 | bufferDesc.format, surfaceOrigin)); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | GrAHardwareBufferImageGenerator::GrAHardwareBufferImageGenerator(const SkImageInfo& info, |
Stan Iliev | 114b091 | 2018-08-31 14:02:55 -0400 | [diff] [blame] | 67 | AHardwareBuffer* hardwareBuffer, SkAlphaType alphaType, bool isProtectedContent, |
Stan Iliev | 505dd57 | 2018-09-13 14:20:03 -0400 | [diff] [blame] | 68 | uint32_t bufferFormat, GrSurfaceOrigin surfaceOrigin) |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 69 | : INHERITED(info) |
Stan Iliev | c01b5c7 | 2018-08-28 10:18:19 -0400 | [diff] [blame] | 70 | , fHardwareBuffer(hardwareBuffer) |
Stan Iliev | 114b091 | 2018-08-31 14:02:55 -0400 | [diff] [blame] | 71 | , fBufferFormat(bufferFormat) |
Stan Iliev | 505dd57 | 2018-09-13 14:20:03 -0400 | [diff] [blame] | 72 | , fIsProtectedContent(isProtectedContent) |
| 73 | , fSurfaceOrigin(surfaceOrigin) { |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 74 | AHardwareBuffer_acquire(fHardwareBuffer); |
| 75 | } |
| 76 | |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 77 | GrAHardwareBufferImageGenerator::~GrAHardwareBufferImageGenerator() { |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 78 | AHardwareBuffer_release(fHardwareBuffer); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 79 | } |
| 80 | |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 81 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 82 | |
Greg Daniel | 40903af | 2020-01-30 14:55:05 -0500 | [diff] [blame] | 83 | GrSurfaceProxyView GrAHardwareBufferImageGenerator::makeView(GrRecordingContext* context) { |
Robert Phillips | 9338c60 | 2019-02-19 12:52:29 -0500 | [diff] [blame] | 84 | if (context->priv().abandoned()) { |
Greg Daniel | 40903af | 2020-01-30 14:55:05 -0500 | [diff] [blame] | 85 | return {}; |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 86 | } |
| 87 | |
Robert Phillips | 9338c60 | 2019-02-19 12:52:29 -0500 | [diff] [blame] | 88 | auto direct = context->priv().asDirectContext(); |
| 89 | if (!direct) { |
Greg Daniel | 40903af | 2020-01-30 14:55:05 -0500 | [diff] [blame] | 90 | return {}; |
Robert Phillips | 9338c60 | 2019-02-19 12:52:29 -0500 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | GrBackendFormat backendFormat = GrAHardwareBufferUtils::GetBackendFormat(direct, |
Greg Daniel | 173464d | 2019-02-06 15:30:34 -0500 | [diff] [blame] | 94 | fHardwareBuffer, |
| 95 | fBufferFormat, |
| 96 | false); |
| 97 | |
Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 98 | GrColorType grColorType = SkColorTypeToGrColorType(this->getInfo().colorType()); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 99 | |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 100 | int width = this->getInfo().width(); |
| 101 | int height = this->getInfo().height(); |
Greg Daniel | 9af948d | 2018-08-27 09:53:51 -0400 | [diff] [blame] | 102 | |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 103 | GrSurfaceDesc desc; |
| 104 | desc.fWidth = width; |
| 105 | desc.fHeight = height; |
Greg Daniel | 9af948d | 2018-08-27 09:53:51 -0400 | [diff] [blame] | 106 | |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 107 | GrTextureType textureType = GrTextureType::k2D; |
Robert Phillips | 4217ea7 | 2019-01-30 13:08:28 -0500 | [diff] [blame] | 108 | if (context->backend() == GrBackendApi::kOpenGL) { |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 109 | textureType = GrTextureType::kExternal; |
Robert Phillips | 4217ea7 | 2019-01-30 13:08:28 -0500 | [diff] [blame] | 110 | } else if (context->backend() == GrBackendApi::kVulkan) { |
Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 111 | VkFormat format; |
| 112 | SkAssertResult(backendFormat.asVkFormat(&format)); |
| 113 | if (format == VK_FORMAT_UNDEFINED) { |
Greg Daniel | 14c55c2 | 2018-12-04 11:25:03 -0500 | [diff] [blame] | 114 | textureType = GrTextureType::kExternal; |
| 115 | } |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 116 | } |
Greg Daniel | 6a0176b | 2018-01-30 09:28:44 -0500 | [diff] [blame] | 117 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 118 | auto proxyProvider = context->priv().proxyProvider(); |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 119 | |
| 120 | AHardwareBuffer* hardwareBuffer = fHardwareBuffer; |
| 121 | AHardwareBuffer_acquire(hardwareBuffer); |
| 122 | |
Stan Iliev | c01b5c7 | 2018-08-28 10:18:19 -0400 | [diff] [blame] | 123 | const bool isProtectedContent = fIsProtectedContent; |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 124 | |
Brian Salomon | 67f0195 | 2019-02-14 13:05:25 -0500 | [diff] [blame] | 125 | class AutoAHBRelease { |
| 126 | public: |
| 127 | AutoAHBRelease(AHardwareBuffer* ahb) : fAhb(ahb) {} |
| 128 | // std::function() must be CopyConstructible, but ours should never actually be copied. |
| 129 | AutoAHBRelease(const AutoAHBRelease&) { SkASSERT(0); } |
| 130 | AutoAHBRelease(AutoAHBRelease&& that) : fAhb(that.fAhb) { that.fAhb = nullptr; } |
| 131 | ~AutoAHBRelease() { fAhb ? AHardwareBuffer_release(fAhb) : void(); } |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 132 | |
Brian Salomon | 67f0195 | 2019-02-14 13:05:25 -0500 | [diff] [blame] | 133 | AutoAHBRelease& operator=(AutoAHBRelease&& that) { |
| 134 | fAhb = skstd::exchange(that.fAhb, nullptr); |
| 135 | return *this; |
| 136 | } |
| 137 | AutoAHBRelease& operator=(const AutoAHBRelease&) = delete; |
| 138 | |
| 139 | AHardwareBuffer* get() const { return fAhb; } |
| 140 | |
| 141 | private: |
| 142 | AHardwareBuffer* fAhb; |
| 143 | }; |
| 144 | |
Greg Daniel | ce3ddaa | 2020-01-22 16:58:15 -0500 | [diff] [blame] | 145 | GrSwizzle readSwizzle = context->priv().caps()->getReadSwizzle(backendFormat, grColorType); |
| 146 | |
Brian Salomon | 67f0195 | 2019-02-14 13:05:25 -0500 | [diff] [blame] | 147 | sk_sp<GrTextureProxy> texProxy = proxyProvider->createLazyProxy( |
Brian Salomon | beb7f52 | 2019-08-30 16:19:42 -0400 | [diff] [blame] | 148 | [direct, buffer = AutoAHBRelease(hardwareBuffer), width, height, isProtectedContent, |
| 149 | backendFormat, grColorType]( |
| 150 | GrResourceProvider* resourceProvider) -> GrSurfaceProxy::LazyCallbackResult { |
Greg Daniel | 173464d | 2019-02-06 15:30:34 -0500 | [diff] [blame] | 151 | GrAHardwareBufferUtils::DeleteImageProc deleteImageProc = nullptr; |
Stan Iliev | a56b04a | 2019-08-01 14:22:34 -0400 | [diff] [blame] | 152 | GrAHardwareBufferUtils::UpdateImageProc updateImageProc = nullptr; |
| 153 | GrAHardwareBufferUtils::TexImageCtx texImageCtx = nullptr; |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 154 | |
Greg Daniel | 173464d | 2019-02-06 15:30:34 -0500 | [diff] [blame] | 155 | GrBackendTexture backendTex = |
Robert Phillips | 9338c60 | 2019-02-19 12:52:29 -0500 | [diff] [blame] | 156 | GrAHardwareBufferUtils::MakeBackendTexture(direct, buffer.get(), |
Greg Daniel | 173464d | 2019-02-06 15:30:34 -0500 | [diff] [blame] | 157 | width, height, |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 158 | &deleteImageProc, |
Stan Iliev | a56b04a | 2019-08-01 14:22:34 -0400 | [diff] [blame] | 159 | &updateImageProc, |
| 160 | &texImageCtx, |
Stan Iliev | 114b091 | 2018-08-31 14:02:55 -0400 | [diff] [blame] | 161 | isProtectedContent, |
Greg Daniel | 173464d | 2019-02-06 15:30:34 -0500 | [diff] [blame] | 162 | backendFormat, |
| 163 | false); |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 164 | if (!backendTex.isValid()) { |
Brian Salomon | b6a3a3b | 2019-04-01 12:29:34 -0400 | [diff] [blame] | 165 | return {}; |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 166 | } |
Stan Iliev | a56b04a | 2019-08-01 14:22:34 -0400 | [diff] [blame] | 167 | SkASSERT(deleteImageProc && texImageCtx); |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 168 | |
Brian Salomon | aa6ca0a | 2019-01-24 16:03:07 -0500 | [diff] [blame] | 169 | // We make this texture cacheable to avoid recreating a GrTexture every time this |
| 170 | // is invoked. We know the owning SkIamge will send an invalidation message when the |
| 171 | // image is destroyed, so the texture will be removed at that time. |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 172 | sk_sp<GrTexture> tex = resourceProvider->wrapBackendTexture( |
Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 173 | backendTex, grColorType, kBorrow_GrWrapOwnership, GrWrapCacheable::kYes, |
| 174 | kRead_GrIOType); |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 175 | if (!tex) { |
Stan Iliev | a56b04a | 2019-08-01 14:22:34 -0400 | [diff] [blame] | 176 | deleteImageProc(texImageCtx); |
Brian Salomon | b6a3a3b | 2019-04-01 12:29:34 -0400 | [diff] [blame] | 177 | return {}; |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 178 | } |
| 179 | |
Greg Daniel | 637c06a | 2018-09-12 09:44:25 -0400 | [diff] [blame] | 180 | if (deleteImageProc) { |
Stan Iliev | a56b04a | 2019-08-01 14:22:34 -0400 | [diff] [blame] | 181 | tex->setRelease(deleteImageProc, texImageCtx); |
Greg Daniel | 637c06a | 2018-09-12 09:44:25 -0400 | [diff] [blame] | 182 | } |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 183 | |
Brian Salomon | 9c73e3d | 2019-08-15 10:55:49 -0400 | [diff] [blame] | 184 | return tex; |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 185 | }, |
Greg Daniel | ce3ddaa | 2020-01-22 16:58:15 -0500 | [diff] [blame] | 186 | backendFormat, desc, readSwizzle, GrRenderable::kNo, 1, fSurfaceOrigin, |
| 187 | GrMipMapped::kNo, GrMipMapsStatus::kNotAllocated, GrInternalSurfaceFlags::kReadOnly, |
| 188 | SkBackingFit::kExact, SkBudgeted::kNo, GrProtected::kNo, |
| 189 | GrSurfaceProxy::UseAllocator::kYes); |
Greg Daniel | f125111 | 2018-08-27 09:55:03 -0400 | [diff] [blame] | 190 | |
Greg Daniel | 40903af | 2020-01-30 14:55:05 -0500 | [diff] [blame] | 191 | return GrSurfaceProxyView(std::move(texProxy), fSurfaceOrigin, readSwizzle); |
Greg Daniel | 3860cfd1 | 2018-09-07 09:13:54 -0400 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | sk_sp<GrTextureProxy> GrAHardwareBufferImageGenerator::onGenerateTexture( |
Robert Phillips | 9338c60 | 2019-02-19 12:52:29 -0500 | [diff] [blame] | 195 | GrRecordingContext* context, const SkImageInfo& info, |
| 196 | const SkIPoint& origin, bool willNeedMipMaps) { |
Greg Daniel | 40903af | 2020-01-30 14:55:05 -0500 | [diff] [blame] | 197 | GrSurfaceProxyView texProxyView = this->makeView(context); |
| 198 | if (!texProxyView.proxy()) { |
Greg Daniel | 3860cfd1 | 2018-09-07 09:13:54 -0400 | [diff] [blame] | 199 | return nullptr; |
| 200 | } |
| 201 | |
| 202 | if (0 == origin.fX && 0 == origin.fY && |
| 203 | info.width() == this->getInfo().width() && info.height() == this->getInfo().height()) { |
| 204 | // If the caller wants the full texture we're done. The caller will handle making a copy for |
| 205 | // mip maps if that is required. |
Greg Daniel | 40903af | 2020-01-30 14:55:05 -0500 | [diff] [blame] | 206 | return texProxyView.asTextureProxyRef(); |
Greg Daniel | 3860cfd1 | 2018-09-07 09:13:54 -0400 | [diff] [blame] | 207 | } |
| 208 | // Otherwise, make a copy for the requested subset. |
| 209 | SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height()); |
| 210 | |
| 211 | GrMipMapped mipMapped = willNeedMipMaps ? GrMipMapped::kYes : GrMipMapped::kNo; |
| 212 | |
Greg Daniel | 3155f7f | 2020-01-16 16:54:26 -0500 | [diff] [blame] | 213 | GrColorType grColorType = SkColorTypeToGrColorType(this->getInfo().colorType()); |
Greg Daniel | 40903af | 2020-01-30 14:55:05 -0500 | [diff] [blame] | 214 | return GrSurfaceProxy::Copy(context, texProxyView.proxy(), texProxyView.origin(), grColorType, |
| 215 | mipMapped, subset, SkBackingFit::kExact, |
| 216 | SkBudgeted::kYes).asTextureProxyRef(); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 217 | } |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 218 | |
| 219 | bool GrAHardwareBufferImageGenerator::onIsValid(GrContext* context) const { |
| 220 | if (nullptr == context) { |
| 221 | return false; //CPU backend is not supported, because hardware buffer can be swizzled |
| 222 | } |
Robert Phillips | 4217ea7 | 2019-01-30 13:08:28 -0500 | [diff] [blame] | 223 | return GrBackendApi::kOpenGL == context->backend() || |
| 224 | GrBackendApi::kVulkan == context->backend(); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | #endif //SK_BUILD_FOR_ANDROID_FRAMEWORK |