2013-05-27 14:12:13 +00:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40; -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "mozilla/Preferences.h"
|
2014-07-11 00:43:01 +00:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2013-05-27 14:12:13 +00:00
|
|
|
|
|
|
|
#include "SharedSurfaceGralloc.h"
|
|
|
|
|
|
|
|
#include "GLContext.h"
|
2014-07-11 22:10:49 +00:00
|
|
|
#include "SharedSurface.h"
|
2014-01-07 15:07:32 +00:00
|
|
|
#include "GLLibraryEGL.h"
|
2014-01-10 13:06:06 +00:00
|
|
|
#include "mozilla/layers/GrallocTextureClient.h"
|
2013-05-27 14:12:13 +00:00
|
|
|
#include "mozilla/layers/ShadowLayers.h"
|
|
|
|
|
|
|
|
#include "ui/GraphicBuffer.h"
|
|
|
|
#include "../layers/ipc/ShadowLayers.h"
|
2013-11-30 22:20:57 +00:00
|
|
|
#include "ScopedGLHelpers.h"
|
2013-05-27 14:12:13 +00:00
|
|
|
|
2014-01-10 13:06:06 +00:00
|
|
|
#include "gfxPlatform.h"
|
2014-03-03 22:11:06 +00:00
|
|
|
#include "gfxPrefs.h"
|
2013-12-10 16:11:58 +00:00
|
|
|
|
2013-05-27 14:12:13 +00:00
|
|
|
#define DEBUG_GRALLOC
|
|
|
|
#ifdef DEBUG_GRALLOC
|
|
|
|
#define DEBUG_PRINT(...) do { printf_stderr(__VA_ARGS__); } while (0)
|
|
|
|
#else
|
|
|
|
#define DEBUG_PRINT(...) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
2014-05-22 10:11:45 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
|
|
|
using namespace mozilla::layers;
|
2013-05-27 14:12:13 +00:00
|
|
|
using namespace android;
|
|
|
|
|
2015-06-05 00:15:38 +00:00
|
|
|
SurfaceFactory_Gralloc::SurfaceFactory_Gralloc(GLContext* prodGL, const SurfaceCaps& caps,
|
2015-10-18 05:24:48 +00:00
|
|
|
const RefPtr<layers::ISurfaceAllocator>& allocator,
|
2015-06-05 00:15:38 +00:00
|
|
|
const layers::TextureFlags& flags)
|
|
|
|
: SurfaceFactory(SharedSurfaceType::Gralloc, prodGL, caps, allocator, flags)
|
2013-05-27 14:12:13 +00:00
|
|
|
{
|
2014-10-08 04:11:54 +00:00
|
|
|
MOZ_ASSERT(mAllocator);
|
2013-05-27 14:12:13 +00:00
|
|
|
}
|
|
|
|
|
2014-08-16 00:38:08 +00:00
|
|
|
/*static*/ UniquePtr<SharedSurface_Gralloc>
|
2013-05-27 14:12:13 +00:00
|
|
|
SharedSurface_Gralloc::Create(GLContext* prodGL,
|
|
|
|
const GLFormats& formats,
|
2013-12-10 16:11:58 +00:00
|
|
|
const gfx::IntSize& size,
|
2013-05-27 14:12:13 +00:00
|
|
|
bool hasAlpha,
|
2014-10-08 04:11:54 +00:00
|
|
|
layers::TextureFlags flags,
|
2013-05-27 14:12:13 +00:00
|
|
|
ISurfaceAllocator* allocator)
|
|
|
|
{
|
2014-01-02 15:17:25 +00:00
|
|
|
GLLibraryEGL* egl = &sEGLLibrary;
|
2013-05-27 14:12:13 +00:00
|
|
|
MOZ_ASSERT(egl);
|
|
|
|
|
2014-08-16 00:38:08 +00:00
|
|
|
UniquePtr<SharedSurface_Gralloc> ret;
|
|
|
|
|
2013-05-27 14:12:13 +00:00
|
|
|
DEBUG_PRINT("SharedSurface_Gralloc::Create -------\n");
|
|
|
|
|
|
|
|
if (!HasExtensions(egl, prodGL))
|
2014-08-16 00:38:08 +00:00
|
|
|
return Move(ret);
|
2013-05-27 14:12:13 +00:00
|
|
|
|
2014-01-23 18:26:40 +00:00
|
|
|
gfxContentType type = hasAlpha ? gfxContentType::COLOR_ALPHA
|
|
|
|
: gfxContentType::COLOR;
|
2013-05-27 14:12:13 +00:00
|
|
|
|
2014-10-08 04:16:14 +00:00
|
|
|
typedef GrallocTextureClientOGL ptrT;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<ptrT> grallocTC = new ptrT(allocator,
|
2015-07-07 02:27:19 +00:00
|
|
|
gfxPlatform::GetPlatform()->Optimal2DFormatForContent(type),
|
2014-10-08 04:16:14 +00:00
|
|
|
gfx::BackendType::NONE, // we don't need to use it with a DrawTarget
|
|
|
|
flags);
|
2014-01-10 13:06:06 +00:00
|
|
|
|
|
|
|
if (!grallocTC->AllocateForGLRendering(size)) {
|
2014-10-08 04:16:14 +00:00
|
|
|
return Move(ret);
|
2014-01-10 13:06:06 +00:00
|
|
|
}
|
2014-01-07 15:07:32 +00:00
|
|
|
|
2014-01-10 13:06:06 +00:00
|
|
|
sp<GraphicBuffer> buffer = grallocTC->GetGraphicBuffer();
|
2013-05-27 14:12:13 +00:00
|
|
|
|
|
|
|
EGLDisplay display = egl->Display();
|
|
|
|
EGLClientBuffer clientBuffer = buffer->getNativeBuffer();
|
|
|
|
EGLint attrs[] = {
|
|
|
|
LOCAL_EGL_NONE, LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
EGLImage image = egl->fCreateImage(display,
|
|
|
|
EGL_NO_CONTEXT,
|
|
|
|
LOCAL_EGL_NATIVE_BUFFER_ANDROID,
|
|
|
|
clientBuffer, attrs);
|
|
|
|
if (!image) {
|
2014-08-16 00:38:08 +00:00
|
|
|
return Move(ret);
|
2013-05-27 14:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
prodGL->MakeCurrent();
|
|
|
|
GLuint prodTex = 0;
|
|
|
|
prodGL->fGenTextures(1, &prodTex);
|
|
|
|
ScopedBindTexture autoTex(prodGL, prodTex);
|
2013-10-30 19:21:22 +00:00
|
|
|
|
|
|
|
prodGL->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_MIN_FILTER, LOCAL_GL_LINEAR);
|
|
|
|
prodGL->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_MAG_FILTER, LOCAL_GL_LINEAR);
|
|
|
|
prodGL->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_WRAP_S, LOCAL_GL_CLAMP_TO_EDGE);
|
|
|
|
prodGL->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_WRAP_T, LOCAL_GL_CLAMP_TO_EDGE);
|
|
|
|
|
2013-05-27 14:12:13 +00:00
|
|
|
prodGL->fEGLImageTargetTexture2D(LOCAL_GL_TEXTURE_2D, image);
|
|
|
|
|
|
|
|
egl->fDestroyImage(display, image);
|
|
|
|
|
2014-08-16 00:38:08 +00:00
|
|
|
ret.reset( new SharedSurface_Gralloc(prodGL, size, hasAlpha, egl,
|
|
|
|
allocator, grallocTC,
|
|
|
|
prodTex) );
|
2014-08-16 00:38:08 +00:00
|
|
|
|
2014-08-16 00:38:08 +00:00
|
|
|
DEBUG_PRINT("SharedSurface_Gralloc::Create: success -- surface %p,"
|
|
|
|
" GraphicBuffer %p.\n",
|
|
|
|
ret.get(), buffer.get());
|
2013-05-27 14:12:13 +00:00
|
|
|
|
2014-08-16 00:38:08 +00:00
|
|
|
return Move(ret);
|
2013-05-27 14:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-19 00:04:05 +00:00
|
|
|
SharedSurface_Gralloc::SharedSurface_Gralloc(GLContext* prodGL,
|
|
|
|
const gfx::IntSize& size,
|
|
|
|
bool hasAlpha,
|
|
|
|
GLLibraryEGL* egl,
|
|
|
|
layers::ISurfaceAllocator* allocator,
|
|
|
|
layers::GrallocTextureClientOGL* textureClient,
|
|
|
|
GLuint prodTex)
|
2014-07-11 22:10:49 +00:00
|
|
|
: SharedSurface(SharedSurfaceType::Gralloc,
|
|
|
|
AttachmentType::GLTexture,
|
|
|
|
prodGL,
|
|
|
|
size,
|
2015-06-05 00:15:38 +00:00
|
|
|
hasAlpha,
|
|
|
|
true)
|
2014-06-19 00:04:05 +00:00
|
|
|
, mEGL(egl)
|
|
|
|
, mSync(0)
|
|
|
|
, mAllocator(allocator)
|
|
|
|
, mTextureClient(textureClient)
|
|
|
|
, mProdTex(prodTex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-27 14:12:13 +00:00
|
|
|
bool
|
|
|
|
SharedSurface_Gralloc::HasExtensions(GLLibraryEGL* egl, GLContext* gl)
|
|
|
|
{
|
|
|
|
return egl->HasKHRImageBase() &&
|
|
|
|
gl->IsExtensionSupported(GLContext::OES_EGL_image);
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedSurface_Gralloc::~SharedSurface_Gralloc()
|
|
|
|
{
|
|
|
|
|
|
|
|
DEBUG_PRINT("[SharedSurface_Gralloc %p] destroyed\n", this);
|
|
|
|
|
|
|
|
mGL->MakeCurrent();
|
2014-02-13 23:02:03 +00:00
|
|
|
mGL->fDeleteTextures(1, &mProdTex);
|
2014-04-21 23:59:30 +00:00
|
|
|
|
|
|
|
if (mSync) {
|
|
|
|
MOZ_ALWAYS_TRUE( mEGL->fDestroySync(mEGL->Display(), mSync) );
|
|
|
|
mSync = 0;
|
|
|
|
}
|
2013-05-27 14:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SharedSurface_Gralloc::Fence()
|
|
|
|
{
|
2014-04-21 23:59:30 +00:00
|
|
|
if (mSync) {
|
|
|
|
MOZ_ALWAYS_TRUE( mEGL->fDestroySync(mEGL->Display(), mSync) );
|
|
|
|
mSync = 0;
|
|
|
|
}
|
|
|
|
|
2014-06-24 15:59:59 +00:00
|
|
|
bool disableSyncFence = false;
|
|
|
|
// Disable sync fence on AdrenoTM200.
|
|
|
|
// AdrenoTM200's sync fence does not work correctly. See Bug 1022205.
|
|
|
|
if (mGL->Renderer() == GLRenderer::AdrenoTM200) {
|
|
|
|
disableSyncFence = true;
|
|
|
|
}
|
|
|
|
|
2014-04-21 23:59:30 +00:00
|
|
|
// When Android native fences are available, try
|
|
|
|
// them first since they're more likely to work.
|
|
|
|
// Android native fences are also likely to perform better.
|
2014-06-24 15:59:59 +00:00
|
|
|
if (!disableSyncFence &&
|
|
|
|
mEGL->IsExtensionSupported(GLLibraryEGL::ANDROID_native_fence_sync))
|
|
|
|
{
|
2014-04-21 23:59:30 +00:00
|
|
|
mGL->MakeCurrent();
|
2014-06-08 13:18:53 +00:00
|
|
|
EGLSync sync = mEGL->fCreateSync(mEGL->Display(),
|
|
|
|
LOCAL_EGL_SYNC_NATIVE_FENCE_ANDROID,
|
|
|
|
nullptr);
|
|
|
|
if (sync) {
|
2014-04-21 23:59:30 +00:00
|
|
|
mGL->fFlush();
|
2014-06-08 13:18:53 +00:00
|
|
|
#if defined(MOZ_WIDGET_GONK) && ANDROID_VERSION >= 17
|
|
|
|
int fenceFd = mEGL->fDupNativeFenceFDANDROID(mEGL->Display(), sync);
|
|
|
|
if (fenceFd != -1) {
|
|
|
|
mEGL->fDestroySync(mEGL->Display(), sync);
|
2015-05-12 23:42:00 +00:00
|
|
|
mTextureClient->SetAcquireFenceHandle(FenceHandle(new FenceHandle::FdObj(fenceFd)));
|
2014-06-08 13:18:53 +00:00
|
|
|
} else {
|
|
|
|
mSync = sync;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
mSync = sync;
|
|
|
|
#endif
|
2014-04-21 23:59:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-24 15:59:59 +00:00
|
|
|
if (!disableSyncFence &&
|
|
|
|
mEGL->IsExtensionSupported(GLLibraryEGL::KHR_fence_sync))
|
|
|
|
{
|
2014-04-21 23:59:30 +00:00
|
|
|
mGL->MakeCurrent();
|
|
|
|
mSync = mEGL->fCreateSync(mEGL->Display(),
|
|
|
|
LOCAL_EGL_SYNC_FENCE,
|
|
|
|
nullptr);
|
|
|
|
if (mSync) {
|
|
|
|
mGL->fFlush();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-27 14:12:13 +00:00
|
|
|
// We should be able to rely on genlock write locks/read locks.
|
|
|
|
// But they're broken on some configs, and even a glFinish doesn't
|
|
|
|
// work. glReadPixels seems to, though.
|
2014-03-03 22:11:06 +00:00
|
|
|
if (gfxPrefs::GrallocFenceWithReadPixels()) {
|
2013-05-27 14:12:13 +00:00
|
|
|
mGL->MakeCurrent();
|
2014-07-12 04:03:07 +00:00
|
|
|
UniquePtr<char[]> buf = MakeUnique<char[]>(4);
|
2014-07-12 04:05:59 +00:00
|
|
|
mGL->fReadPixels(0, 0, 1, 1, LOCAL_GL_RGBA, LOCAL_GL_UNSIGNED_BYTE, buf.get());
|
2013-05-27 14:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SharedSurface_Gralloc::WaitSync()
|
|
|
|
{
|
2014-04-21 23:59:30 +00:00
|
|
|
if (!mSync) {
|
|
|
|
// We must not be needed.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(mEGL->IsExtensionSupported(GLLibraryEGL::KHR_fence_sync));
|
|
|
|
|
|
|
|
EGLint status = mEGL->fClientWaitSync(mEGL->Display(),
|
|
|
|
mSync,
|
|
|
|
0,
|
|
|
|
LOCAL_EGL_FOREVER);
|
|
|
|
|
|
|
|
if (status != LOCAL_EGL_CONDITION_SATISFIED) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ALWAYS_TRUE( mEGL->fDestroySync(mEGL->Display(), mSync) );
|
|
|
|
mSync = 0;
|
|
|
|
|
2013-05-27 14:12:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-05-14 22:40:15 +00:00
|
|
|
|
2014-08-05 05:10:47 +00:00
|
|
|
bool
|
|
|
|
SharedSurface_Gralloc::PollSync()
|
|
|
|
{
|
|
|
|
if (!mSync) {
|
|
|
|
// We must not be needed.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(mEGL->IsExtensionSupported(GLLibraryEGL::KHR_fence_sync));
|
|
|
|
|
|
|
|
EGLint status = 0;
|
|
|
|
MOZ_ALWAYS_TRUE( mEGL->fGetSyncAttrib(mEGL->Display(),
|
|
|
|
mSync,
|
|
|
|
LOCAL_EGL_SYNC_STATUS_KHR,
|
|
|
|
&status) );
|
|
|
|
if (status != LOCAL_EGL_SIGNALED_KHR) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ALWAYS_TRUE( mEGL->fDestroySync(mEGL->Display(), mSync) );
|
|
|
|
mSync = 0;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-14 22:40:15 +00:00
|
|
|
void
|
|
|
|
SharedSurface_Gralloc::WaitForBufferOwnership()
|
|
|
|
{
|
2014-05-24 16:14:45 +00:00
|
|
|
mTextureClient->WaitForBufferOwnership();
|
2014-05-14 22:40:15 +00:00
|
|
|
}
|
2014-05-22 10:11:45 +00:00
|
|
|
|
2015-06-05 00:15:38 +00:00
|
|
|
bool
|
|
|
|
SharedSurface_Gralloc::ToSurfaceDescriptor(layers::SurfaceDescriptor* const out_descriptor)
|
|
|
|
{
|
|
|
|
mTextureClient->MarkShared();
|
|
|
|
return mTextureClient->ToSurfaceDescriptor(*out_descriptor);
|
2014-05-22 10:11:45 +00:00
|
|
|
}
|
2015-06-05 00:15:38 +00:00
|
|
|
|
2015-10-12 03:21:03 +00:00
|
|
|
bool
|
|
|
|
SharedSurface_Gralloc::ReadbackBySharedHandle(gfx::DataSourceSurface* out_surface)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(out_surface);
|
|
|
|
sp<GraphicBuffer> buffer = mTextureClient->GetGraphicBuffer();
|
|
|
|
|
|
|
|
const uint8_t* grallocData = nullptr;
|
|
|
|
auto result = buffer->lock(
|
|
|
|
GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_NEVER,
|
|
|
|
const_cast<void**>(reinterpret_cast<const void**>(&grallocData))
|
|
|
|
);
|
|
|
|
|
|
|
|
if (result == BAD_VALUE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx::DataSourceSurface::ScopedMap map(out_surface, gfx::DataSourceSurface::WRITE);
|
|
|
|
if (!map.IsMapped()) {
|
|
|
|
buffer->unlock();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t stride = buffer->getStride() * android::bytesPerPixel(buffer->getPixelFormat());
|
|
|
|
uint32_t height = buffer->getHeight();
|
|
|
|
uint32_t width = buffer->getWidth();
|
|
|
|
for (uint32_t i = 0; i < height; i++) {
|
|
|
|
memcpy(map.GetData() + i * map.GetStride(),
|
|
|
|
grallocData + i * stride, width * 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->unlock();
|
|
|
|
|
|
|
|
android::PixelFormat srcFormat = buffer->getPixelFormat();
|
|
|
|
MOZ_ASSERT(srcFormat == PIXEL_FORMAT_RGBA_8888 ||
|
|
|
|
srcFormat == PIXEL_FORMAT_BGRA_8888 ||
|
|
|
|
srcFormat == PIXEL_FORMAT_RGBX_8888);
|
|
|
|
bool isSrcRGB = srcFormat == PIXEL_FORMAT_RGBA_8888 ||
|
|
|
|
srcFormat == PIXEL_FORMAT_RGBX_8888;
|
|
|
|
|
|
|
|
gfx::SurfaceFormat destFormat = out_surface->GetFormat();
|
|
|
|
MOZ_ASSERT(destFormat == gfx::SurfaceFormat::R8G8B8X8 ||
|
|
|
|
destFormat == gfx::SurfaceFormat::R8G8B8A8 ||
|
|
|
|
destFormat == gfx::SurfaceFormat::B8G8R8X8 ||
|
|
|
|
destFormat == gfx::SurfaceFormat::B8G8R8A8);
|
|
|
|
bool isDestRGB = destFormat == gfx::SurfaceFormat::R8G8B8X8 ||
|
|
|
|
destFormat == gfx::SurfaceFormat::R8G8B8A8;
|
|
|
|
|
|
|
|
if (isSrcRGB != isDestRGB) {
|
|
|
|
SwapRAndBComponents(out_surface);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-05 00:15:38 +00:00
|
|
|
} // namespace gl
|
|
|
|
} // namespace mozilla
|