blob: fe2012bb4aa329dd000125f80a2981898ecba406 [file] [log] [blame]
Stan Iliev7e910df2017-06-02 10:29:21 -04001/*
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 Iliev7e910df2017-06-02 10:29:21 -04007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkTypes.h"
Derek Sollenberger7a869872017-06-27 15:37:25 -04009
10#if defined(SK_BUILD_FOR_ANDROID) && __ANDROID_API__ >= 26
Stan Iliev7e910df2017-06-02 10:29:21 -040011#define GL_GLEXT_PROTOTYPES
12#define EGL_EGLEXT_PROTOTYPES
Greg Daniel54bfb182018-11-20 17:12:36 -050013
Greg Daniel54bfb182018-11-20 17:12:36 -050014
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "src/gpu/GrAHardwareBufferImageGenerator.h"
Stan Iliev7e910df2017-06-02 10:29:21 -040016
Derek Sollenberger7a869872017-06-27 15:37:25 -040017#include <android/hardware_buffer.h>
18
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "include/gpu/GrBackendSurface.h"
Robert Phillipsb7bfbc22020-07-01 12:55:01 -040020#include "include/gpu/GrDirectContext.h"
21#include "include/gpu/GrRecordingContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "include/gpu/gl/GrGLTypes.h"
Ben Wagner21bca282019-05-15 10:15:52 -040023#include "src/core/SkMessageBus.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "src/gpu/GrAHardwareBufferUtils.h"
Adlai Hollera0693042020-10-14 11:23:11 -040025#include "src/gpu/GrDirectContextPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050026#include "src/gpu/GrProxyProvider.h"
27#include "src/gpu/GrRecordingContextPriv.h"
28#include "src/gpu/GrResourceCache.h"
29#include "src/gpu/GrResourceProvider.h"
30#include "src/gpu/GrResourceProviderPriv.h"
Greg Daniel456f9b52020-03-05 19:14:18 +000031#include "src/gpu/GrTexture.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040032#include "src/gpu/GrTextureProxy.h"
Brian Salomonbc074a62020-03-18 10:06:13 -040033#include "src/gpu/SkGr.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050034#include "src/gpu/gl/GrGLDefines.h"
Stan Iliev7e910df2017-06-02 10:29:21 -040035
36#include <EGL/egl.h>
37#include <EGL/eglext.h>
38#include <GLES/gl.h>
39#include <GLES/glext.h>
40
Greg Daniel637c06a2018-09-12 09:44:25 -040041#ifdef SK_VULKAN
Mike Kleinc0bd9f92019-04-23 12:05:21 -050042#include "include/gpu/vk/GrVkExtensions.h"
43#include "src/gpu/vk/GrVkGpu.h"
Greg Daniel637c06a2018-09-12 09:44:25 -040044#endif
45
Stan Ilievc01b5c72018-08-28 10:18:19 -040046#define PROT_CONTENT_EXT_STR "EGL_EXT_protected_content"
47#define EGL_PROTECTED_CONTENT_EXT 0x32C0
48
Stan Iliev7e910df2017-06-02 10:29:21 -040049std::unique_ptr<SkImageGenerator> GrAHardwareBufferImageGenerator::Make(
Stan Iliev505dd572018-09-13 14:20:03 -040050 AHardwareBuffer* graphicBuffer, SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace,
51 GrSurfaceOrigin surfaceOrigin) {
Stan Iliev7e910df2017-06-02 10:29:21 -040052 AHardwareBuffer_Desc bufferDesc;
53 AHardwareBuffer_describe(graphicBuffer, &bufferDesc);
Greg Daniel173464d2019-02-06 15:30:34 -050054
55 SkColorType colorType =
56 GrAHardwareBufferUtils::GetSkColorTypeFromBufferFormat(bufferDesc.format);
Stan Iliev7e910df2017-06-02 10:29:21 -040057 SkImageInfo info = SkImageInfo::Make(bufferDesc.width, bufferDesc.height, colorType,
58 alphaType, std::move(colorSpace));
Greg Daniel173464d2019-02-06 15:30:34 -050059
Stan Ilievc01b5c72018-08-28 10:18:19 -040060 bool createProtectedImage = 0 != (bufferDesc.usage & AHARDWAREBUFFER_USAGE_PROTECTED_CONTENT);
Stan Iliev505dd572018-09-13 14:20:03 -040061 return std::unique_ptr<SkImageGenerator>(new GrAHardwareBufferImageGenerator(
62 info, graphicBuffer, alphaType, createProtectedImage,
63 bufferDesc.format, surfaceOrigin));
Stan Iliev7e910df2017-06-02 10:29:21 -040064}
65
66GrAHardwareBufferImageGenerator::GrAHardwareBufferImageGenerator(const SkImageInfo& info,
Stan Iliev114b0912018-08-31 14:02:55 -040067 AHardwareBuffer* hardwareBuffer, SkAlphaType alphaType, bool isProtectedContent,
Stan Iliev505dd572018-09-13 14:20:03 -040068 uint32_t bufferFormat, GrSurfaceOrigin surfaceOrigin)
Stan Iliev7e910df2017-06-02 10:29:21 -040069 : INHERITED(info)
Stan Ilievc01b5c72018-08-28 10:18:19 -040070 , fHardwareBuffer(hardwareBuffer)
Stan Iliev114b0912018-08-31 14:02:55 -040071 , fBufferFormat(bufferFormat)
Stan Iliev505dd572018-09-13 14:20:03 -040072 , fIsProtectedContent(isProtectedContent)
73 , fSurfaceOrigin(surfaceOrigin) {
Greg Danielf1251112018-08-27 09:55:03 -040074 AHardwareBuffer_acquire(fHardwareBuffer);
75}
76
Stan Iliev7e910df2017-06-02 10:29:21 -040077GrAHardwareBufferImageGenerator::~GrAHardwareBufferImageGenerator() {
Greg Danielf1251112018-08-27 09:55:03 -040078 AHardwareBuffer_release(fHardwareBuffer);
Stan Iliev7e910df2017-06-02 10:29:21 -040079}
80
Stan Iliev7e910df2017-06-02 10:29:21 -040081///////////////////////////////////////////////////////////////////////////////////////////////////
82
Greg Daniel40903af2020-01-30 14:55:05 -050083GrSurfaceProxyView GrAHardwareBufferImageGenerator::makeView(GrRecordingContext* context) {
Robert Phillips9eb00022020-06-30 15:30:12 -040084 if (context->abandoned()) {
Greg Daniel40903af2020-01-30 14:55:05 -050085 return {};
Stan Iliev7e910df2017-06-02 10:29:21 -040086 }
87
Robert Phillipsf8f45d92020-07-01 11:11:18 -040088 auto direct = context->asDirectContext();
Robert Phillips9338c602019-02-19 12:52:29 -050089 if (!direct) {
Greg Daniel40903af2020-01-30 14:55:05 -050090 return {};
Robert Phillips9338c602019-02-19 12:52:29 -050091 }
92
93 GrBackendFormat backendFormat = GrAHardwareBufferUtils::GetBackendFormat(direct,
Greg Daniel173464d2019-02-06 15:30:34 -050094 fHardwareBuffer,
95 fBufferFormat,
96 false);
97
Robert Phillipsc80b0e92019-07-23 10:27:09 -040098 GrColorType grColorType = SkColorTypeToGrColorType(this->getInfo().colorType());
Stan Iliev7e910df2017-06-02 10:29:21 -040099
Greg Danielf1251112018-08-27 09:55:03 -0400100 int width = this->getInfo().width();
101 int height = this->getInfo().height();
Greg Daniel9af948d2018-08-27 09:53:51 -0400102
Robert Phillips9da87e02019-02-04 13:26:26 -0500103 auto proxyProvider = context->priv().proxyProvider();
Greg Danielf1251112018-08-27 09:55:03 -0400104
105 AHardwareBuffer* hardwareBuffer = fHardwareBuffer;
106 AHardwareBuffer_acquire(hardwareBuffer);
107
Brian Salomon67f01952019-02-14 13:05:25 -0500108 class AutoAHBRelease {
109 public:
110 AutoAHBRelease(AHardwareBuffer* ahb) : fAhb(ahb) {}
111 // std::function() must be CopyConstructible, but ours should never actually be copied.
112 AutoAHBRelease(const AutoAHBRelease&) { SkASSERT(0); }
113 AutoAHBRelease(AutoAHBRelease&& that) : fAhb(that.fAhb) { that.fAhb = nullptr; }
114 ~AutoAHBRelease() { fAhb ? AHardwareBuffer_release(fAhb) : void(); }
Greg Danielf1251112018-08-27 09:55:03 -0400115
Brian Salomon67f01952019-02-14 13:05:25 -0500116 AutoAHBRelease& operator=(AutoAHBRelease&& that) {
Adlai Holler5ba50af2020-04-29 21:11:14 -0400117 fAhb = std::exchange(that.fAhb, nullptr);
Brian Salomon67f01952019-02-14 13:05:25 -0500118 return *this;
119 }
120 AutoAHBRelease& operator=(const AutoAHBRelease&) = delete;
121
122 AHardwareBuffer* get() const { return fAhb; }
123
124 private:
125 AHardwareBuffer* fAhb;
126 };
127
128 sk_sp<GrTextureProxy> texProxy = proxyProvider->createLazyProxy(
Brian Salomon63410e92020-03-23 18:32:50 -0400129 [direct, buffer = AutoAHBRelease(hardwareBuffer)](
130 GrResourceProvider* resourceProvider,
131 const GrSurfaceProxy::LazySurfaceDesc& desc)
132 -> GrSurfaceProxy::LazyCallbackResult {
Greg Daniel173464d2019-02-06 15:30:34 -0500133 GrAHardwareBufferUtils::DeleteImageProc deleteImageProc = nullptr;
Stan Ilieva56b04a2019-08-01 14:22:34 -0400134 GrAHardwareBufferUtils::UpdateImageProc updateImageProc = nullptr;
135 GrAHardwareBufferUtils::TexImageCtx texImageCtx = nullptr;
Greg Danielf1251112018-08-27 09:55:03 -0400136
Brian Salomon63410e92020-03-23 18:32:50 -0400137 bool isProtected = desc.fProtected == GrProtected::kYes;
Greg Daniel173464d2019-02-06 15:30:34 -0500138 GrBackendTexture backendTex =
Brian Salomon63410e92020-03-23 18:32:50 -0400139 GrAHardwareBufferUtils::MakeBackendTexture(direct,
140 buffer.get(),
141 desc.fDimensions.width(),
142 desc.fDimensions.height(),
Greg Danielf1251112018-08-27 09:55:03 -0400143 &deleteImageProc,
Stan Ilieva56b04a2019-08-01 14:22:34 -0400144 &updateImageProc,
145 &texImageCtx,
Brian Salomon63410e92020-03-23 18:32:50 -0400146 isProtected,
147 desc.fFormat,
Greg Daniel173464d2019-02-06 15:30:34 -0500148 false);
Greg Danielf1251112018-08-27 09:55:03 -0400149 if (!backendTex.isValid()) {
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400150 return {};
Greg Danielf1251112018-08-27 09:55:03 -0400151 }
Stan Ilieva56b04a2019-08-01 14:22:34 -0400152 SkASSERT(deleteImageProc && texImageCtx);
Greg Danielf1251112018-08-27 09:55:03 -0400153
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500154 // We make this texture cacheable to avoid recreating a GrTexture every time this
Brian Salomon874b3fb2021-03-03 10:29:51 -0500155 // is invoked. We know the owning SkImage will send an invalidation message when the
156 // image is destroyed, so the texture will be removed at that time. Note that the
157 // proxy will be keyed in GrProxyProvider but that cache just allows extant proxies
158 // to be reused. It does not retain them. After a flush the proxy will be deleted
159 // and a subsequent use of the image will recreate a new proxy around the GrTexture
160 // found in the GrResourceCache.
161 // This is the last use of GrWrapCacheable::kYes so if we actually cached the proxy
162 // we could remove wrapped GrGpuResource caching.
Brian Salomonc67c31c2018-12-06 10:00:03 -0500163 sk_sp<GrTexture> tex = resourceProvider->wrapBackendTexture(
Brian Salomon8a78e9c2020-03-27 10:42:15 -0400164 backendTex, kBorrow_GrWrapOwnership, GrWrapCacheable::kYes, kRead_GrIOType);
Greg Danielf1251112018-08-27 09:55:03 -0400165 if (!tex) {
Stan Ilieva56b04a2019-08-01 14:22:34 -0400166 deleteImageProc(texImageCtx);
Brian Salomonb6a3a3b2019-04-01 12:29:34 -0400167 return {};
Greg Danielf1251112018-08-27 09:55:03 -0400168 }
169
Greg Daniel637c06a2018-09-12 09:44:25 -0400170 if (deleteImageProc) {
Stan Ilieva56b04a2019-08-01 14:22:34 -0400171 tex->setRelease(deleteImageProc, texImageCtx);
Greg Daniel637c06a2018-09-12 09:44:25 -0400172 }
Stan Iliev7e910df2017-06-02 10:29:21 -0400173
Brian Salomon9c73e3d2019-08-15 10:55:49 -0400174 return tex;
Greg Danielf1251112018-08-27 09:55:03 -0400175 },
Greg Danielc113f002020-08-26 13:28:22 -0400176 backendFormat, {width, height}, GrMipmapped::kNo, GrMipmapStatus::kNotAllocated,
177 GrInternalSurfaceFlags::kReadOnly, SkBackingFit::kExact, SkBudgeted::kNo,
178 GrProtected(fIsProtectedContent), GrSurfaceProxy::UseAllocator::kYes);
Greg Danielf1251112018-08-27 09:55:03 -0400179
Brian Salomondf1bd6d2020-03-26 20:37:01 -0400180 GrSwizzle readSwizzle = context->priv().caps()->getReadSwizzle(backendFormat, grColorType);
181
Greg Daniel40903af2020-01-30 14:55:05 -0500182 return GrSurfaceProxyView(std::move(texProxy), fSurfaceOrigin, readSwizzle);
Greg Daniel3860cfd12018-09-07 09:13:54 -0400183}
184
Brian Salomonbc074a62020-03-18 10:06:13 -0400185GrSurfaceProxyView GrAHardwareBufferImageGenerator::onGenerateTexture(
186 GrRecordingContext* context,
187 const SkImageInfo& info,
188 const SkIPoint& origin,
Brian Salomon7e67dca2020-07-21 09:27:25 -0400189 GrMipmapped mipMapped,
Brian Salomonbc074a62020-03-18 10:06:13 -0400190 GrImageTexGenPolicy texGenPolicy) {
Greg Daniel40903af2020-01-30 14:55:05 -0500191 GrSurfaceProxyView texProxyView = this->makeView(context);
192 if (!texProxyView.proxy()) {
Greg Danielcc104db2020-02-03 14:17:08 -0500193 return {};
Greg Daniel3860cfd12018-09-07 09:13:54 -0400194 }
Greg Danielcc104db2020-02-03 14:17:08 -0500195 SkASSERT(texProxyView.asTextureProxy());
Greg Daniel3860cfd12018-09-07 09:13:54 -0400196
Brian Salomonbc074a62020-03-18 10:06:13 -0400197 if (texGenPolicy == GrImageTexGenPolicy::kDraw && origin.isZero() &&
Brian Salomon7e67dca2020-07-21 09:27:25 -0400198 info.dimensions() == this->getInfo().dimensions() && mipMapped == GrMipmapped::kNo) {
Brian Salomona54af922020-03-03 16:56:22 -0500199 // If the caller wants the full non-MIP mapped texture we're done.
Greg Danielcc104db2020-02-03 14:17:08 -0500200 return texProxyView;
Greg Daniel3860cfd12018-09-07 09:13:54 -0400201 }
Brian Salomona54af922020-03-03 16:56:22 -0500202 // Otherwise, make a copy for the requested subset and/or MIP maps.
Greg Daniel3860cfd12018-09-07 09:13:54 -0400203 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), info.height());
204
Brian Salomonbc074a62020-03-18 10:06:13 -0400205 SkBudgeted budgeted = texGenPolicy == GrImageTexGenPolicy::kNew_Uncached_Unbudgeted
206 ? SkBudgeted::kNo
207 : SkBudgeted::kYes;
208
Brian Salomonc5243782020-04-02 12:50:34 -0400209 return GrSurfaceProxyView::Copy(context, std::move(texProxyView), mipMapped, subset,
210 SkBackingFit::kExact, budgeted);
Stan Iliev7e910df2017-06-02 10:29:21 -0400211}
Stan Iliev7e910df2017-06-02 10:29:21 -0400212
Robert Phillips4a3ebc22020-07-10 11:27:43 -0400213bool GrAHardwareBufferImageGenerator::onIsValid(GrRecordingContext* context) const {
Stan Iliev7e910df2017-06-02 10:29:21 -0400214 if (nullptr == context) {
215 return false; //CPU backend is not supported, because hardware buffer can be swizzled
216 }
Robert Phillips4217ea72019-01-30 13:08:28 -0500217 return GrBackendApi::kOpenGL == context->backend() ||
218 GrBackendApi::kVulkan == context->backend();
Stan Iliev7e910df2017-06-02 10:29:21 -0400219}
220
221#endif //SK_BUILD_FOR_ANDROID_FRAMEWORK