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 /widget/gtk/nsShmImage.h | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | widget/gtk/nsShmImage.h | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/widget/gtk/nsShmImage.h b/widget/gtk/nsShmImage.h new file mode 100644 index 0000000000..2d92c39e0d --- /dev/null +++ b/widget/gtk/nsShmImage.h @@ -0,0 +1,75 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * 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 __mozilla_widget_nsShmImage_h__ +#define __mozilla_widget_nsShmImage_h__ + +#if defined(MOZ_X11) +# define MOZ_HAVE_SHMIMAGE +#endif + +#ifdef MOZ_HAVE_SHMIMAGE + +# include "mozilla/gfx/2D.h" +# include "nsIWidget.h" +# include "Units.h" + +# include <X11/Xlib-xcb.h> +# include <xcb/shm.h> + +class nsShmImage { + // bug 1168843, compositor thread may create shared memory instances that are + // destroyed by main thread on shutdown, so this must use thread-safe RC to + // avoid hitting assertion + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(nsShmImage) + + public: + static bool UseShm(); + + already_AddRefed<mozilla::gfx::DrawTarget> CreateDrawTarget( + const mozilla::LayoutDeviceIntRegion& aRegion); + + void Put(const mozilla::LayoutDeviceIntRegion& aRegion); + + nsShmImage(Display* aDisplay, Drawable aWindow, Visual* aVisual, + unsigned int aDepth); + + private: + ~nsShmImage(); + + bool InitExtension(); + + bool CreateShmSegment(); + void DestroyShmSegment(); + + bool CreateImage(const mozilla::gfx::IntSize& aSize); + void DestroyImage(); + + void WaitIfPendingReply(); + + Display* mDisplay; + xcb_connection_t* mConnection; + Window mWindow; + Visual* mVisual; + unsigned int mDepth; + + mozilla::gfx::SurfaceFormat mFormat; + mozilla::gfx::IntSize mSize; + int mStride; + + xcb_pixmap_t mPixmap; + xcb_gcontext_t mGC; + xcb_get_input_focus_cookie_t mSyncRequest; + bool mRequestPending; + + xcb_shm_seg_t mShmSeg; + int mShmId; + uint8_t* mShmAddr; +}; + +#endif // MOZ_HAVE_SHMIMAGE + +#endif |