diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /gfx/gl/SharedSurfaceD3D11Interop.h | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/gl/SharedSurfaceD3D11Interop.h')
-rw-r--r-- | gfx/gl/SharedSurfaceD3D11Interop.h | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/gfx/gl/SharedSurfaceD3D11Interop.h b/gfx/gl/SharedSurfaceD3D11Interop.h new file mode 100644 index 0000000000..5295c23f00 --- /dev/null +++ b/gfx/gl/SharedSurfaceD3D11Interop.h @@ -0,0 +1,79 @@ +/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 4; -*- */ +/* 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/. */ + +#ifndef SHARED_SURFACE_D3D11_INTEROP_H_ +#define SHARED_SURFACE_D3D11_INTEROP_H_ + +#include <d3d11.h> +#include <windows.h> +#include "SharedSurface.h" + +namespace mozilla { +namespace gl { + +class DXInterop2Device; +class GLContext; +class WGLLibrary; + +class SharedSurface_D3D11Interop final : public SharedSurface { + public: + struct Data final { + const RefPtr<DXInterop2Device> interop; + HANDLE lockHandle; + RefPtr<ID3D11Texture2D> texD3D; + HANDLE dxgiHandle; + UniquePtr<Renderbuffer> interopRb; + UniquePtr<MozFramebuffer> interopFbIfNeedsIndirect; + }; + const Data mData; + const bool mNeedsFinish; + + private: + bool mLockedForGL = false; + + public: + static UniquePtr<SharedSurface_D3D11Interop> Create(const SharedSurfaceDesc&, + DXInterop2Device*); + + private: + SharedSurface_D3D11Interop(const SharedSurfaceDesc&, + UniquePtr<MozFramebuffer>&& fbForDrawing, Data&&); + + public: + virtual ~SharedSurface_D3D11Interop(); + + void LockProdImpl() override {} + void UnlockProdImpl() override {} + + void ProducerAcquireImpl() override; + void ProducerReleaseImpl() override; + + Maybe<layers::SurfaceDescriptor> ToSurfaceDescriptor() override; +}; + +class SurfaceFactory_D3D11Interop : public SurfaceFactory { + public: + const RefPtr<DXInterop2Device> mInterop; + + static UniquePtr<SurfaceFactory_D3D11Interop> Create(GLContext& gl); + + protected: + SurfaceFactory_D3D11Interop(const PartialSharedSurfaceDesc&, + DXInterop2Device* interop); + + public: + virtual ~SurfaceFactory_D3D11Interop(); + + protected: + UniquePtr<SharedSurface> CreateSharedImpl( + const SharedSurfaceDesc& desc) override { + return SharedSurface_D3D11Interop::Create(desc, mInterop); + } +}; + +} /* namespace gl */ +} /* namespace mozilla */ + +#endif /* SHARED_SURFACE_D3D11_INTEROP_H_ */ |