Files
tubestation/gfx/webrender_bindings/RenderTextureHostWrapper.cpp
Jamie Nicol 4e1b51a92c Bug 1898238 - Make SharedSurface_EGLImage and (Render)EGLImageTextureHost work. r=sotaro,jgilbert
SharedSurface_EGLImage has mostly avoided bitrotting. However, it now
sometimes gets destructed after the GLContext has been lost, resulting
in a crash when attempting to clean up its resources. To avoid this,
we hold a weak reference to the EglDisplay, and use that to clean up
rather than the GLContext.

To support rendering with SWGL, EGLImageTextureHost ensures the
correct preferCompositorSurface, supportsExternalCompositing, and
imageType values are sent to webrender. RenderEGLImageTextureHost now
implements RenderTextureHostSWGL, as well as the new
CreateTextureSource() function, and EGLImageTextureSource is
initialized with a GL context reference so that it may actually work.

Additionally we use eglWaitSync() rather than eglClientWaitSync()
where available for improved performance. And we ensure that we bind
the EGL images' textures to GL_TEXTURE_2D rather than
GL_TEXTURE_EXTERNAL when running on the Android emulator to work
around the buggy implementation in some emulator versions.

Differential Revision: https://phabricator.services.mozilla.com/D211291
2024-07-22 20:23:38 +00:00

229 lines
6.0 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 "RenderTextureHostWrapper.h"
#include "mozilla/gfx/Logging.h"
#include "mozilla/layers/RemoteTextureMap.h"
#include "mozilla/webrender/RenderThread.h"
namespace mozilla {
namespace wr {
RenderTextureHostWrapper::RenderTextureHostWrapper(
ExternalImageId aExternalImageId)
: mExternalImageId(aExternalImageId) {
MOZ_COUNT_CTOR_INHERITED(RenderTextureHostWrapper, RenderTextureHost);
EnsureTextureHost();
}
RenderTextureHostWrapper::~RenderTextureHostWrapper() {
MOZ_COUNT_DTOR_INHERITED(RenderTextureHostWrapper, RenderTextureHost);
}
void RenderTextureHostWrapper::EnsureTextureHost() const {
if (mTextureHost) {
return;
}
mTextureHost = RenderThread::Get()->GetRenderTexture(mExternalImageId);
MOZ_ASSERT(mTextureHost);
if (!mTextureHost) {
gfxCriticalNoteOnce << "Failed to get RenderTextureHost for extId:"
<< AsUint64(mExternalImageId);
}
}
wr::WrExternalImage RenderTextureHostWrapper::Lock(uint8_t aChannelIndex,
gl::GLContext* aGL) {
if (!mTextureHost) {
return InvalidToWrExternalImage();
}
return mTextureHost->Lock(aChannelIndex, aGL);
}
void RenderTextureHostWrapper::Unlock() {
if (mTextureHost) {
mTextureHost->Unlock();
}
}
std::pair<gfx::Point, gfx::Point> RenderTextureHostWrapper::GetUvCoords(
gfx::IntSize aTextureSize) const {
if (mTextureHost) {
return mTextureHost->GetUvCoords(aTextureSize);
}
return RenderTextureHost::GetUvCoords(aTextureSize);
}
void RenderTextureHostWrapper::ClearCachedResources() {
if (mTextureHost) {
mTextureHost->ClearCachedResources();
}
}
void RenderTextureHostWrapper::PrepareForUse() {
if (!mTextureHost) {
return;
}
mTextureHost->PrepareForUse();
}
void RenderTextureHostWrapper::NotifyForUse() {
if (!mTextureHost) {
return;
}
mTextureHost->NotifyForUse();
}
void RenderTextureHostWrapper::NotifyNotUsed() {
if (!mTextureHost) {
return;
}
mTextureHost->NotifyNotUsed();
}
bool RenderTextureHostWrapper::SyncObjectNeeded() { return false; }
RefPtr<layers::TextureSource> RenderTextureHostWrapper::CreateTextureSource(
layers::TextureSourceProvider* aProvider) {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->CreateTextureSource(aProvider);
}
RenderMacIOSurfaceTextureHost*
RenderTextureHostWrapper::AsRenderMacIOSurfaceTextureHost() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderMacIOSurfaceTextureHost();
}
RenderDXGITextureHost* RenderTextureHostWrapper::AsRenderDXGITextureHost() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderDXGITextureHost();
}
RenderDXGIYCbCrTextureHost*
RenderTextureHostWrapper::AsRenderDXGIYCbCrTextureHost() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderDXGIYCbCrTextureHost();
}
RenderDcompSurfaceTextureHost*
RenderTextureHostWrapper::AsRenderDcompSurfaceTextureHost() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderDcompSurfaceTextureHost();
}
RenderTextureHostSWGL* RenderTextureHostWrapper::AsRenderTextureHostSWGL() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderTextureHostSWGL();
}
RenderAndroidHardwareBufferTextureHost*
RenderTextureHostWrapper::AsRenderAndroidHardwareBufferTextureHost() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderAndroidHardwareBufferTextureHost();
}
RenderAndroidSurfaceTextureHost*
RenderTextureHostWrapper::AsRenderAndroidSurfaceTextureHost() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderAndroidSurfaceTextureHost();
}
RenderEGLImageTextureHost*
RenderTextureHostWrapper::AsRenderEGLImageTextureHost() {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderEGLImageTextureHost();
}
RenderTextureHostSWGL* RenderTextureHostWrapper::EnsureRenderTextureHostSWGL()
const {
if (!mTextureHost) {
return nullptr;
}
return mTextureHost->AsRenderTextureHostSWGL();
}
void RenderTextureHostWrapper::SetIsSoftwareDecodedVideo() {
if (!mTextureHost) {
return;
}
return mTextureHost->SetIsSoftwareDecodedVideo();
}
bool RenderTextureHostWrapper::IsSoftwareDecodedVideo() {
if (!mTextureHost) {
return false;
}
return mTextureHost->IsSoftwareDecodedVideo();
}
size_t RenderTextureHostWrapper::GetPlaneCount() const {
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
return swglHost->GetPlaneCount();
}
return 0;
}
gfx::SurfaceFormat RenderTextureHostWrapper::GetFormat() const {
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
return swglHost->GetFormat();
}
return gfx::SurfaceFormat::UNKNOWN;
}
gfx::ColorDepth RenderTextureHostWrapper::GetColorDepth() const {
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
return swglHost->GetColorDepth();
}
return gfx::ColorDepth::COLOR_8;
}
gfx::YUVRangedColorSpace RenderTextureHostWrapper::GetYUVColorSpace() const {
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
return swglHost->GetYUVColorSpace();
}
return gfx::YUVRangedColorSpace::Default;
}
bool RenderTextureHostWrapper::MapPlane(RenderCompositor* aCompositor,
uint8_t aChannelIndex,
PlaneInfo& aPlaneInfo) {
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
return swglHost->MapPlane(aCompositor, aChannelIndex, aPlaneInfo);
}
return false;
}
void RenderTextureHostWrapper::UnmapPlanes() {
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
swglHost->UnmapPlanes();
}
}
} // namespace wr
} // namespace mozilla