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 /dom/canvas/OffscreenCanvasDisplayHelper.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 'dom/canvas/OffscreenCanvasDisplayHelper.h')
-rw-r--r-- | dom/canvas/OffscreenCanvasDisplayHelper.h | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/dom/canvas/OffscreenCanvasDisplayHelper.h b/dom/canvas/OffscreenCanvasDisplayHelper.h new file mode 100644 index 0000000000..fec6970058 --- /dev/null +++ b/dom/canvas/OffscreenCanvasDisplayHelper.h @@ -0,0 +1,92 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim:set ts=2 sw=2 sts=2 et cindent: */ +/* 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_DOM_OFFSCREENCANVASDISPLAYHELPER_H_ +#define MOZILLA_DOM_OFFSCREENCANVASDISPLAYHELPER_H_ + +#include "ImageContainer.h" +#include "GLContextTypes.h" +#include "mozilla/dom/CanvasRenderingContextHelper.h" +#include "mozilla/gfx/Point.h" +#include "mozilla/layers/LayersTypes.h" +#include "mozilla/Maybe.h" +#include "mozilla/Mutex.h" +#include "mozilla/RefPtr.h" +#include "nsISupportsImpl.h" +#include "nsThreadUtils.h" + +namespace mozilla::dom { +class HTMLCanvasElement; +class OffscreenCanvas; +class ThreadSafeWorkerRef; + +struct OffscreenCanvasDisplayData final { + mozilla::gfx::IntSize mSize = {0, 0}; + bool mDoPaintCallbacks = false; + bool mIsOpaque = true; + bool mIsAlphaPremult = true; + mozilla::gl::OriginPos mOriginPos = gl::OriginPos::TopLeft; + Maybe<layers::RemoteTextureOwnerId> mOwnerId; +}; + +class OffscreenCanvasDisplayHelper final { + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(OffscreenCanvasDisplayHelper) + + public: + explicit OffscreenCanvasDisplayHelper(HTMLCanvasElement* aCanvasElement, + uint32_t aWidth, uint32_t aHeight); + + CanvasContextType GetContextType() const; + + RefPtr<layers::ImageContainer> GetImageContainer() const; + + void UpdateContext(OffscreenCanvas* aOffscreenCanvas, + RefPtr<ThreadSafeWorkerRef>&& aWorkerRef, + CanvasContextType aType, const Maybe<int32_t>& aChildId); + + void FlushForDisplay(); + + bool CommitFrameToCompositor(nsICanvasRenderingContextInternal* aContext, + layers::TextureType aTextureType, + const Maybe<OffscreenCanvasDisplayData>& aData); + + void DestroyCanvas(); + void DestroyElement(); + + already_AddRefed<mozilla::gfx::SourceSurface> GetSurfaceSnapshot(); + already_AddRefed<mozilla::layers::Image> GetAsImage(); + + private: + ~OffscreenCanvasDisplayHelper(); + void MaybeQueueInvalidateElement() MOZ_REQUIRES(mMutex); + void InvalidateElement(); + + bool TransformSurface(const gfx::DataSourceSurface::ScopedMap& aSrcMap, + const gfx::DataSourceSurface::ScopedMap& aDstMap, + gfx::SurfaceFormat aFormat, const gfx::IntSize& aSize, + bool aNeedsPremult, gl::OriginPos aOriginPos) const; + + mutable Mutex mMutex; + HTMLCanvasElement* MOZ_NON_OWNING_REF mCanvasElement MOZ_GUARDED_BY(mMutex); + OffscreenCanvas* MOZ_NON_OWNING_REF mOffscreenCanvas MOZ_GUARDED_BY(mMutex) = + nullptr; + RefPtr<layers::ImageContainer> mImageContainer MOZ_GUARDED_BY(mMutex); + RefPtr<gfx::SourceSurface> mFrontBufferSurface MOZ_GUARDED_BY(mMutex); + RefPtr<ThreadSafeWorkerRef> mWorkerRef MOZ_GUARDED_BY(mMutex); + + OffscreenCanvasDisplayData mData MOZ_GUARDED_BY(mMutex); + CanvasContextType mType MOZ_GUARDED_BY(mMutex) = CanvasContextType::NoContext; + Maybe<uint32_t> mContextManagerId MOZ_GUARDED_BY(mMutex); + Maybe<int32_t> mContextChildId MOZ_GUARDED_BY(mMutex); + const mozilla::layers::ImageContainer::ProducerID mImageProducerID; + mozilla::layers::ImageContainer::FrameID mLastFrameID MOZ_GUARDED_BY(mMutex) = + 0; + bool mPendingInvalidate MOZ_GUARDED_BY(mMutex) = false; +}; + +} // namespace mozilla::dom + +#endif // MOZILLA_DOM_OFFSCREENCANVASDISPLAYHELPER_H_ |