mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
ca19b65a80
- Bug 1250873 - Rename HasInternalBuffer into HasIntermediateBuffer in layers. r=sotaro (578235105f) - Bug 1256045 - Add a null-check in BufferTextureHost::EnsureWrappingTextureSource. r=jnicol (943c73559d) - Bug 1251726 - Check if Compositor is set r=nical (550d5b0164) - Bug 1251427 - Require a full update when a TextureHost switches from a TextureSource to another. r=sotaro (bc59ac4cd7) - Bug 1256693 - ISurfaceAllocator cleanup. r=sotaro (098e824d4d) - Bug 1257939 - initialize BGRX alpha channel to opaque when clearing and ignore uninitialized alpha in texture clients. r=mchang (73d778496f) - more of reapply Bug 1200595 - Consolidate the TextureClient's destruction logic (74517415ed) - Bug 1256693 - Refer to ClientIPCAllocator instead of ISurfaceAllocator where it makes sense. r=sotaro (e81f2dd923) - Bug 1236112 - Block on d3d9 video frames to complete before returning them from the decoder. r=cpearce (25114bb3c4) - Bug 1196409 - Disable D3D11-DXVA for resolutions not supported in hardware. r=jya (3007b1ebff) - Bug 1196411 - Disable DXVA on 60fps 1080p videos for AMD cards that can't decode quick enough. r=jya (9f8f67e12b) - Bug 1200775 - Check intel specific h264 decoder when checking for DXVA support. r=cpearce (e7bcbb10be) - Bug 1257013 - Part 1: Use readback to synchronize d3d9 video. r=cpearce,Bas (d247a9bed6) - Bug 1257013 - Part 2: Use readback to synchronize d3d11 video. r=cpearce,Bas (43883c1607) - missing bit of Bug 1206568: P2 (58de11b22f) - Bug 1239093 - Add pref to allow overriding of hardcoded DXVA blacklist. r=jrmuizel (dfd5e57c2f) - Bug 1217185: To allow for sandboxing, use null HWNDs when creating the D3D device for video decoding. r=mattwoodrow (0c96e66a47) - Bug 1200775 - Followup to fix typo and indent issues (b1d1c76788) - bits of Bug 1207245 - part 3 (52a1939b74) - Bug 1224199 - Don't make the TextureClient wait for compositor recycle if the GLContext is shutting down - r=nical (9a0081f217) - more of Bug 1200595 (047201fd60) - Bug 1253094, part 2 - Stop using DebugOnly for class/struct members in gfx/. r=Bas (bab6569366)
210 lines
6.2 KiB
C++
210 lines
6.2 KiB
C++
/* -*- 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 "SharedSurfaceEGL.h"
|
|
|
|
#include "GLBlitHelper.h"
|
|
#include "GLContextEGL.h"
|
|
#include "GLLibraryEGL.h"
|
|
#include "GLReadTexImageHelper.h"
|
|
#include "mozilla/layers/LayersSurfaces.h" // for SurfaceDescriptor, etc
|
|
#include "SharedSurface.h"
|
|
#include "TextureGarbageBin.h"
|
|
|
|
namespace mozilla {
|
|
namespace gl {
|
|
|
|
/*static*/ UniquePtr<SharedSurface_EGLImage>
|
|
SharedSurface_EGLImage::Create(GLContext* prodGL,
|
|
const GLFormats& formats,
|
|
const gfx::IntSize& size,
|
|
bool hasAlpha,
|
|
EGLContext context)
|
|
{
|
|
GLLibraryEGL* egl = &sEGLLibrary;
|
|
MOZ_ASSERT(egl);
|
|
MOZ_ASSERT(context);
|
|
|
|
UniquePtr<SharedSurface_EGLImage> ret;
|
|
|
|
if (!HasExtensions(egl, prodGL)) {
|
|
return Move(ret);
|
|
}
|
|
|
|
MOZ_ALWAYS_TRUE(prodGL->MakeCurrent());
|
|
GLuint prodTex = CreateTextureForOffscreen(prodGL, formats, size);
|
|
if (!prodTex) {
|
|
return Move(ret);
|
|
}
|
|
|
|
EGLClientBuffer buffer = reinterpret_cast<EGLClientBuffer>(prodTex);
|
|
EGLImage image = egl->fCreateImage(egl->Display(), context,
|
|
LOCAL_EGL_GL_TEXTURE_2D, buffer,
|
|
nullptr);
|
|
if (!image) {
|
|
prodGL->fDeleteTextures(1, &prodTex);
|
|
return Move(ret);
|
|
}
|
|
|
|
ret.reset( new SharedSurface_EGLImage(prodGL, egl, size, hasAlpha,
|
|
formats, prodTex, image) );
|
|
return Move(ret);
|
|
}
|
|
|
|
bool
|
|
SharedSurface_EGLImage::HasExtensions(GLLibraryEGL* egl, GLContext* gl)
|
|
{
|
|
return egl->HasKHRImageBase() &&
|
|
egl->IsExtensionSupported(GLLibraryEGL::KHR_gl_texture_2D_image) &&
|
|
gl->IsExtensionSupported(GLContext::OES_EGL_image_external);
|
|
}
|
|
|
|
SharedSurface_EGLImage::SharedSurface_EGLImage(GLContext* gl,
|
|
GLLibraryEGL* egl,
|
|
const gfx::IntSize& size,
|
|
bool hasAlpha,
|
|
const GLFormats& formats,
|
|
GLuint prodTex,
|
|
EGLImage image)
|
|
: SharedSurface(SharedSurfaceType::EGLImageShare,
|
|
AttachmentType::GLTexture,
|
|
gl,
|
|
size,
|
|
hasAlpha,
|
|
false) // Can't recycle, as mSync changes never update TextureHost.
|
|
, mMutex("SharedSurface_EGLImage mutex")
|
|
, mEGL(egl)
|
|
, mFormats(formats)
|
|
, mProdTex(prodTex)
|
|
, mImage(image)
|
|
, mCurConsGL(nullptr)
|
|
, mConsTex(0)
|
|
, mSync(0)
|
|
{}
|
|
|
|
SharedSurface_EGLImage::~SharedSurface_EGLImage()
|
|
{
|
|
mEGL->fDestroyImage(Display(), mImage);
|
|
|
|
mGL->MakeCurrent();
|
|
mGL->fDeleteTextures(1, &mProdTex);
|
|
mProdTex = 0;
|
|
|
|
if (mConsTex) {
|
|
MOZ_ASSERT(mGarbageBin);
|
|
mGarbageBin->Trash(mConsTex);
|
|
mConsTex = 0;
|
|
}
|
|
|
|
if (mSync) {
|
|
// We can't call this unless we have the ext, but we will always have
|
|
// the ext if we have something to destroy.
|
|
mEGL->fDestroySync(Display(), mSync);
|
|
mSync = 0;
|
|
}
|
|
}
|
|
|
|
layers::TextureFlags
|
|
SharedSurface_EGLImage::GetTextureFlags() const
|
|
{
|
|
return layers::TextureFlags::DEALLOCATE_CLIENT;
|
|
}
|
|
|
|
void
|
|
SharedSurface_EGLImage::ProducerReleaseImpl()
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
mGL->MakeCurrent();
|
|
|
|
if (mEGL->IsExtensionSupported(GLLibraryEGL::KHR_fence_sync) &&
|
|
mGL->IsExtensionSupported(GLContext::OES_EGL_sync))
|
|
{
|
|
if (mSync) {
|
|
MOZ_RELEASE_ASSERT(false, "Non-recycleable should not Fence twice.");
|
|
MOZ_ALWAYS_TRUE( mEGL->fDestroySync(Display(), mSync) );
|
|
mSync = 0;
|
|
}
|
|
|
|
mSync = mEGL->fCreateSync(Display(),
|
|
LOCAL_EGL_SYNC_FENCE,
|
|
nullptr);
|
|
if (mSync) {
|
|
mGL->fFlush();
|
|
return;
|
|
}
|
|
}
|
|
|
|
MOZ_ASSERT(!mSync);
|
|
mGL->fFinish();
|
|
}
|
|
|
|
EGLDisplay
|
|
SharedSurface_EGLImage::Display() const
|
|
{
|
|
return mEGL->Display();
|
|
}
|
|
|
|
void
|
|
SharedSurface_EGLImage::AcquireConsumerTexture(GLContext* consGL, GLuint* out_texture, GLuint* out_target)
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
MOZ_ASSERT(!mCurConsGL || consGL == mCurConsGL);
|
|
|
|
if (!mConsTex) {
|
|
consGL->fGenTextures(1, &mConsTex);
|
|
MOZ_ASSERT(mConsTex);
|
|
|
|
ScopedBindTexture autoTex(consGL, mConsTex, LOCAL_GL_TEXTURE_EXTERNAL);
|
|
consGL->fEGLImageTargetTexture2D(LOCAL_GL_TEXTURE_EXTERNAL, mImage);
|
|
|
|
mCurConsGL = consGL;
|
|
mGarbageBin = consGL->TexGarbageBin();
|
|
}
|
|
|
|
MOZ_ASSERT(consGL == mCurConsGL);
|
|
*out_texture = mConsTex;
|
|
*out_target = LOCAL_GL_TEXTURE_EXTERNAL;
|
|
}
|
|
|
|
bool
|
|
SharedSurface_EGLImage::ToSurfaceDescriptor(layers::SurfaceDescriptor* const out_descriptor)
|
|
{
|
|
*out_descriptor = layers::EGLImageDescriptor((uintptr_t)mImage, (uintptr_t)mSync,
|
|
mSize, mHasAlpha);
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
SharedSurface_EGLImage::ReadbackBySharedHandle(gfx::DataSourceSurface* out_surface)
|
|
{
|
|
MOZ_ASSERT(out_surface);
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
return sEGLLibrary.ReadbackEGLImage(mImage, out_surface);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
/*static*/ UniquePtr<SurfaceFactory_EGLImage>
|
|
SurfaceFactory_EGLImage::Create(GLContext* prodGL, const SurfaceCaps& caps,
|
|
const RefPtr<layers::ClientIPCAllocator>& allocator,
|
|
const layers::TextureFlags& flags)
|
|
{
|
|
EGLContext context = GLContextEGL::Cast(prodGL)->mContext;
|
|
|
|
typedef SurfaceFactory_EGLImage ptrT;
|
|
UniquePtr<ptrT> ret;
|
|
|
|
GLLibraryEGL* egl = &sEGLLibrary;
|
|
if (SharedSurface_EGLImage::HasExtensions(egl, prodGL)) {
|
|
ret.reset( new ptrT(prodGL, caps, allocator, flags, context) );
|
|
}
|
|
|
|
return Move(ret);
|
|
}
|
|
|
|
} // namespace gl
|
|
|
|
} /* namespace mozilla */
|