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 | */ |
| 7 | #include "SkTypes.h" |
| 8 | |
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 |
| 13 | #include "GrAHardwareBufferImageGenerator.h" |
| 14 | |
Derek Sollenberger | 7a86987 | 2017-06-27 15:37:25 -0400 | [diff] [blame] | 15 | #include <android/hardware_buffer.h> |
| 16 | |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 17 | #include "GrBackendSurface.h" |
| 18 | #include "GrContext.h" |
| 19 | #include "GrContextPriv.h" |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 20 | #include "GrResourceCache.h" |
Robert Phillips | 0001828 | 2017-06-15 15:35:16 -0400 | [diff] [blame] | 21 | #include "GrResourceProvider.h" |
Robert Phillips | 847d4c5 | 2017-06-13 18:21:44 -0400 | [diff] [blame] | 22 | #include "GrTexture.h" |
Robert Phillips | ade9f61 | 2017-06-16 07:32:43 -0400 | [diff] [blame] | 23 | #include "GrTextureProxy.h" |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 24 | #include "SkMessageBus.h" |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 25 | |
| 26 | #include <EGL/egl.h> |
| 27 | #include <EGL/eglext.h> |
| 28 | #include <GLES/gl.h> |
| 29 | #include <GLES/glext.h> |
| 30 | |
| 31 | class BufferCleanupHelper { |
| 32 | public: |
| 33 | BufferCleanupHelper(EGLImageKHR image, EGLDisplay display) |
| 34 | : fImage(image) |
| 35 | , fDisplay(display) { } |
| 36 | ~BufferCleanupHelper() { |
| 37 | eglDestroyImageKHR(fDisplay, fImage); |
| 38 | } |
| 39 | private: |
| 40 | EGLImageKHR fImage; |
| 41 | EGLDisplay fDisplay; |
| 42 | }; |
| 43 | |
| 44 | std::unique_ptr<SkImageGenerator> GrAHardwareBufferImageGenerator::Make( |
| 45 | AHardwareBuffer* graphicBuffer, SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace) { |
| 46 | AHardwareBuffer_Desc bufferDesc; |
| 47 | AHardwareBuffer_describe(graphicBuffer, &bufferDesc); |
| 48 | SkColorType colorType; |
| 49 | switch (bufferDesc.format) { |
| 50 | case AHARDWAREBUFFER_FORMAT_R8G8B8A8_UNORM: |
| 51 | colorType = kRGBA_8888_SkColorType; |
| 52 | break; |
| 53 | case AHARDWAREBUFFER_FORMAT_R16G16B16A16_FLOAT: |
| 54 | colorType = kRGBA_F16_SkColorType; |
| 55 | break; |
| 56 | case AHARDWAREBUFFER_FORMAT_R5G6B5_UNORM: |
| 57 | colorType = kRGB_565_SkColorType; |
| 58 | break; |
| 59 | default: |
| 60 | return nullptr; |
| 61 | } |
| 62 | SkImageInfo info = SkImageInfo::Make(bufferDesc.width, bufferDesc.height, colorType, |
| 63 | alphaType, std::move(colorSpace)); |
| 64 | return std::unique_ptr<SkImageGenerator>(new GrAHardwareBufferImageGenerator(info, graphicBuffer, |
| 65 | alphaType)); |
| 66 | } |
| 67 | |
| 68 | GrAHardwareBufferImageGenerator::GrAHardwareBufferImageGenerator(const SkImageInfo& info, |
| 69 | AHardwareBuffer* graphicBuffer, SkAlphaType alphaType) |
| 70 | : INHERITED(info) |
Derek Sollenberger | 7a86987 | 2017-06-27 15:37:25 -0400 | [diff] [blame] | 71 | , fGraphicBuffer(graphicBuffer) { |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 72 | AHardwareBuffer_acquire(fGraphicBuffer); |
| 73 | } |
| 74 | |
| 75 | GrAHardwareBufferImageGenerator::~GrAHardwareBufferImageGenerator() { |
| 76 | AHardwareBuffer_release(fGraphicBuffer); |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 77 | this->clear(); |
| 78 | } |
| 79 | |
| 80 | void GrAHardwareBufferImageGenerator::clear() { |
| 81 | if (fOriginalTexture) { |
| 82 | // Notify the original cache that it can free the last ref, so it happens on the correct |
| 83 | // thread. |
| 84 | GrGpuResourceFreedMessage msg { fOriginalTexture, fOwningContextID }; |
| 85 | SkMessageBus<GrGpuResourceFreedMessage>::Post(msg); |
| 86 | fOriginalTexture = nullptr; |
| 87 | } |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | void GrAHardwareBufferImageGenerator::deleteImageTexture(void* context) { |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 91 | BufferCleanupHelper* cleanupHelper = static_cast<BufferCleanupHelper*>(context); |
| 92 | delete cleanupHelper; |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 96 | |
| 97 | #if SK_SUPPORT_GPU |
| 98 | |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 99 | sk_sp<GrTextureProxy> GrAHardwareBufferImageGenerator::onGenerateTexture( |
Christopher Cameron | 77e9666 | 2017-07-08 01:47:47 -0700 | [diff] [blame] | 100 | GrContext* context, const SkImageInfo& info, const SkIPoint& origin, |
| 101 | SkTransferFunctionBehavior) { |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 102 | auto proxy = this->makeProxy(context); |
| 103 | if (!proxy) { |
| 104 | return nullptr; |
| 105 | } |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 106 | |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 107 | if (0 == origin.fX && 0 == origin.fY && |
| 108 | info.width() == getInfo().width() && info.height() == getInfo().height()) { |
| 109 | // If the caller wants the entire texture, we're done |
| 110 | return proxy; |
| 111 | } else { |
| 112 | // Otherwise, make a copy of the requested subset. |
| 113 | return GrSurfaceProxy::Copy(context, proxy.get(), |
| 114 | SkIRect::MakeXYWH(origin.fX, origin.fY, info.width(), |
| 115 | info.height()), |
| 116 | SkBudgeted::kYes); |
| 117 | } |
| 118 | } |
| 119 | #endif |
| 120 | |
| 121 | sk_sp<GrTextureProxy> GrAHardwareBufferImageGenerator::makeProxy(GrContext* context) { |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 122 | if (!context->getGpu() || kOpenGL_GrBackend != context->contextPriv().getBackend()) { |
| 123 | // Check if GrContext is not abandoned and the backend is GL. |
| 124 | return nullptr; |
| 125 | } |
| 126 | |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 127 | // return a cached GrTexture if invoked with the same context |
| 128 | if (fOriginalTexture && fOwningContextID == context->uniqueID()) { |
Robert Phillips | 066f020 | 2017-07-25 10:16:35 -0400 | [diff] [blame] | 129 | return GrSurfaceProxy::MakeWrapped(sk_ref_sp(fOriginalTexture), kTopLeft_GrSurfaceOrigin); |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 130 | } |
| 131 | |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 132 | while (GL_NO_ERROR != glGetError()) {} //clear GL errors |
| 133 | |
| 134 | EGLClientBuffer clientBuffer = eglGetNativeClientBufferANDROID(fGraphicBuffer); |
| 135 | EGLint attribs[] = { EGL_IMAGE_PRESERVED_KHR, EGL_TRUE, |
| 136 | EGL_NONE }; |
| 137 | EGLDisplay display = eglGetCurrentDisplay(); |
| 138 | EGLImageKHR image = eglCreateImageKHR(display, EGL_NO_CONTEXT, EGL_NATIVE_BUFFER_ANDROID, |
| 139 | clientBuffer, attribs); |
| 140 | if (EGL_NO_IMAGE_KHR == image) { |
| 141 | SkDebugf("Could not create EGL image, err = (%#x)", (int) eglGetError() ); |
| 142 | return nullptr; |
| 143 | } |
| 144 | GrGLuint texID; |
| 145 | glGenTextures(1, &texID); |
| 146 | if (!texID) { |
| 147 | eglDestroyImageKHR(display, image); |
| 148 | return nullptr; |
| 149 | } |
| 150 | glBindTexture(GL_TEXTURE_EXTERNAL_OES, texID); |
| 151 | GLenum status = GL_NO_ERROR; |
| 152 | if ((status = glGetError()) != GL_NO_ERROR) { |
| 153 | SkDebugf("glBindTexture failed (%#x)", (int) status); |
| 154 | glDeleteTextures(1, &texID); |
| 155 | eglDestroyImageKHR(display, image); |
| 156 | return nullptr; |
| 157 | } |
| 158 | glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, image); |
| 159 | if ((status = glGetError()) != GL_NO_ERROR) { |
| 160 | SkDebugf("glEGLImageTargetTexture2DOES failed (%#x)", (int) status); |
| 161 | glDeleteTextures(1, &texID); |
| 162 | eglDestroyImageKHR(display, image); |
| 163 | return nullptr; |
| 164 | } |
| 165 | context->resetContext(kTextureBinding_GrGLBackendState); |
| 166 | |
| 167 | GrGLTextureInfo textureInfo; |
| 168 | textureInfo.fTarget = GL_TEXTURE_EXTERNAL_OES; |
| 169 | textureInfo.fID = texID; |
| 170 | |
| 171 | GrPixelConfig pixelConfig; |
| 172 | switch (getInfo().colorType()) { |
| 173 | case kRGBA_8888_SkColorType: |
| 174 | pixelConfig = kRGBA_8888_GrPixelConfig; |
| 175 | break; |
| 176 | case kRGBA_F16_SkColorType: |
| 177 | pixelConfig = kRGBA_half_GrPixelConfig; |
| 178 | break; |
| 179 | case kRGB_565_SkColorType: |
| 180 | pixelConfig = kRGB_565_GrPixelConfig; |
| 181 | break; |
| 182 | default: |
| 183 | glDeleteTextures(1, &texID); |
| 184 | eglDestroyImageKHR(display, image); |
| 185 | return nullptr; |
| 186 | } |
| 187 | |
| 188 | GrBackendTexture backendTex(getInfo().width(), getInfo().height(), pixelConfig, textureInfo); |
| 189 | if (backendTex.width() <= 0 || backendTex.height() <= 0) { |
| 190 | glDeleteTextures(1, &texID); |
| 191 | eglDestroyImageKHR(display, image); |
| 192 | return nullptr; |
| 193 | } |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 194 | sk_sp<GrTexture> tex = context->resourceProvider()->wrapBackendTexture(backendTex, |
Robert Phillips | 7294b85 | 2017-08-01 13:51:44 +0000 | [diff] [blame] | 195 | kTopLeft_GrSurfaceOrigin, |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 196 | kAdopt_GrWrapOwnership); |
| 197 | if (!tex) { |
| 198 | glDeleteTextures(1, &texID); |
| 199 | eglDestroyImageKHR(display, image); |
| 200 | return nullptr; |
| 201 | } |
| 202 | tex->setRelease(deleteImageTexture, new BufferCleanupHelper(image, display)); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 203 | |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 204 | // We fail this assert, if the context has changed. This will be fully handled after |
| 205 | // skbug.com/6812 is ready. |
| 206 | SkASSERT(!fOriginalTexture); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 207 | |
Stan Iliev | dbba55d | 2017-06-28 13:24:41 -0400 | [diff] [blame] | 208 | this->clear(); |
| 209 | fOriginalTexture = tex.get(); |
| 210 | fOwningContextID = context->uniqueID(); |
| 211 | // Attach our texture to this context's resource cache. This ensures that deletion will happen |
| 212 | // in the correct thread/context. This adds the only ref to the texture that will persist from |
| 213 | // this point. To trigger GrTexture deletion a message is sent by generator dtor or by |
| 214 | // makeProxy when it is invoked with a different context. |
| 215 | //TODO: GrResourceCache should delete GrTexture, when GrContext is deleted. Currently |
| 216 | //TODO: SkMessageBus ignores messages for deleted contexts and GrTexture will leak. |
| 217 | context->getResourceCache()->insertCrossContextGpuResource(fOriginalTexture); |
Robert Phillips | 066f020 | 2017-07-25 10:16:35 -0400 | [diff] [blame] | 218 | return GrSurfaceProxy::MakeWrapped(std::move(tex), kTopLeft_GrSurfaceOrigin); |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 219 | } |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 220 | |
| 221 | bool GrAHardwareBufferImageGenerator::onIsValid(GrContext* context) const { |
| 222 | if (nullptr == context) { |
| 223 | return false; //CPU backend is not supported, because hardware buffer can be swizzled |
| 224 | } |
| 225 | // TODO: add Vulkan support |
| 226 | return kOpenGL_GrBackend == context->contextPriv().getBackend(); |
| 227 | } |
| 228 | |
| 229 | #endif //SK_BUILD_FOR_ANDROID_FRAMEWORK |