1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/*
* Copyright (C) 2023 Igalia S.L.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#if (PLATFORM(GTK) || (PLATFORM(WPE) && ENABLE(WPE_PLATFORM)))
#include "AcceleratedSurface.h"
#include "DMABufRendererBufferFormat.h"
#include "MessageReceiver.h"
#include <WebCore/Damage.h>
#include <wtf/Noncopyable.h>
#include <wtf/RunLoop.h>
#include <wtf/TZoneMalloc.h>
#include <wtf/unix/UnixFileDescriptor.h>
#if USE(GBM)
#include <WebCore/DRMDeviceNode.h>
#include <atomic>
#include <wtf/Lock.h>
typedef void *EGLImage;
struct gbm_bo;
#endif
namespace WebCore {
class GLFence;
class Region;
class ShareableBitmap;
class ShareableBitmapHandle;
}
namespace WebKit {
class AcceleratedSurfaceDMABuf;
}
namespace WTF {
template<typename T> struct IsDeprecatedTimerSmartPointerException;
template<> struct IsDeprecatedTimerSmartPointerException<WebKit::AcceleratedSurfaceDMABuf> : std::true_type { };
}
namespace WebKit {
class ThreadedCompositor;
class WebPage;
class AcceleratedSurfaceDMABuf final : public AcceleratedSurface, public IPC::MessageReceiver {
public:
static std::unique_ptr<AcceleratedSurfaceDMABuf> create(ThreadedCompositor&, WebPage&, Function<void()>&& frameCompleteHandler);
~AcceleratedSurfaceDMABuf();
void ref() const final;
void deref() const final;
private:
uint64_t window() const override { return 0; }
uint64_t surfaceID() const override;
bool resize(const WebCore::IntSize&) override;
bool shouldPaintMirrored() const override
{
#if PLATFORM(WPE) || (PLATFORM(GTK) && USE(GTK4))
return false;
#else
return true;
#endif
}
void willDestroyGLContext() override;
void willRenderFrame() override;
void didRenderFrame() override;
#if ENABLE(DAMAGE_TRACKING)
const WebCore::Damage& addDamage(const WebCore::Damage&) override;
#endif
void didCreateCompositingRunLoop(WTF::RunLoop&) override;
void willDestroyCompositingRunLoop() override;
#if PLATFORM(WPE) && USE(GBM) && ENABLE(WPE_PLATFORM)
void preferredBufferFormatsDidChange() override;
#endif
void visibilityDidChange(bool) override;
bool backgroundColorDidChange() override;
AcceleratedSurfaceDMABuf(ThreadedCompositor&, WebPage&, Function<void()>&& frameCompleteHandler);
// IPC::MessageReceiver.
void didReceiveMessage(IPC::Connection&, IPC::Decoder&) override;
void releaseBuffer(uint64_t, WTF::UnixFileDescriptor&&);
void frameDone();
void releaseUnusedBuffersTimerFired();
class RenderTarget {
WTF_MAKE_TZONE_ALLOCATED(RenderTarget);
public:
virtual ~RenderTarget();
uint64_t id() const { return m_id; }
#if ENABLE(DAMAGE_TRACKING)
const WebCore::Damage& damage() { return m_damage; }
void addDamage(const WebCore::Damage&);
#endif
virtual void willRenderFrame();
virtual void didRenderFrame();
std::unique_ptr<WebCore::GLFence> createRenderingFence(bool) const;
void setReleaseFenceFD(UnixFileDescriptor&&);
protected:
RenderTarget(uint64_t, const WebCore::IntSize&);
virtual bool supportsExplicitSync() const = 0;
uint64_t m_id { 0 };
unsigned m_fbo { 0 };
uint64_t m_surfaceID { 0 };
unsigned m_depthStencilBuffer { 0 };
UnixFileDescriptor m_releaseFenceFD;
#if ENABLE(DAMAGE_TRACKING)
WebCore::Damage m_damage { WebCore::Damage::invalid() };
#endif
};
#if USE(GBM)
struct BufferFormat {
BufferFormat() = default;
~BufferFormat() = default;
BufferFormat(const BufferFormat&) = delete;
BufferFormat& operator=(const BufferFormat&) = delete;
BufferFormat(BufferFormat&& other)
{
*this = WTFMove(other);
}
BufferFormat& operator=(BufferFormat&& other)
{
usage = std::exchange(other.usage, DMABufRendererBufferFormat::Usage::Rendering);
drmDevice = WTFMove(other.drmDevice);
fourcc = std::exchange(other.fourcc, 0);
modifiers = WTFMove(other.modifiers);
drmDeviceNode = WTFMove(other.drmDeviceNode);
return *this;
}
bool operator==(const BufferFormat& other) const
{
return usage == other.usage && drmDevice == other.drmDevice && fourcc == other.fourcc && modifiers == other.modifiers;
}
DMABufRendererBufferFormat::Usage usage { DMABufRendererBufferFormat::Usage::Rendering };
CString drmDevice;
uint32_t fourcc { 0 };
Vector<uint64_t, 1> modifiers;
RefPtr<WebCore::DRMDeviceNode> drmDeviceNode;
};
class RenderTargetEGLImage final : public RenderTarget {
public:
static std::unique_ptr<RenderTarget> create(uint64_t, const WebCore::IntSize&, const BufferFormat&);
RenderTargetEGLImage(uint64_t, const WebCore::IntSize&, EGLImage, uint32_t format, Vector<WTF::UnixFileDescriptor>&&, Vector<uint32_t>&& offsets, Vector<uint32_t>&& strides, uint64_t modifier, DMABufRendererBufferFormat::Usage);
~RenderTargetEGLImage();
private:
bool supportsExplicitSync() const override { return true; }
unsigned m_colorBuffer { 0 };
EGLImage m_image { nullptr };
};
#endif
class RenderTargetSHMImage final : public RenderTarget {
public:
static std::unique_ptr<RenderTarget> create(uint64_t, const WebCore::IntSize&);
RenderTargetSHMImage(uint64_t, const WebCore::IntSize&, Ref<WebCore::ShareableBitmap>&&, WebCore::ShareableBitmapHandle&&);
~RenderTargetSHMImage();
private:
bool supportsExplicitSync() const override { return false; }
void didRenderFrame() override;
unsigned m_colorBuffer { 0 };
Ref<WebCore::ShareableBitmap> m_bitmap;
};
class RenderTargetTexture final : public RenderTarget {
public:
static std::unique_ptr<RenderTarget> create(uint64_t, const WebCore::IntSize&);
RenderTargetTexture(uint64_t, const WebCore::IntSize&, unsigned texture, uint32_t format, Vector<WTF::UnixFileDescriptor>&&, Vector<uint32_t>&& offsets, Vector<uint32_t>&& strides, uint64_t modifier);
~RenderTargetTexture();
private:
bool supportsExplicitSync() const override { return true; }
unsigned m_texture { 0 };
};
class SwapChain {
WTF_MAKE_NONCOPYABLE(SwapChain);
public:
explicit SwapChain(uint64_t);
~SwapChain() = default;
enum class Type {
Invalid,
#if USE(GBM)
EGLImage,
#endif
SharedMemory,
Texture
};
Type type() const { return m_type; }
void resize(const WebCore::IntSize&);
RenderTarget* nextTarget();
void releaseTarget(uint64_t, UnixFileDescriptor&& releaseFence);
void reset();
void releaseUnusedBuffers();
#if ENABLE(DAMAGE_TRACKING)
void addDamage(const WebCore::Damage&);
#endif
unsigned size() const { return m_freeTargets.size() + m_lockedTargets.size(); }
#if USE(GBM)
void setupBufferFormat(const Vector<DMABufRendererBufferFormat>&, bool);
#endif
private:
static constexpr unsigned s_maximumBuffers = 3;
std::unique_ptr<RenderTarget> createTarget() const;
uint64_t m_surfaceID { 0 };
Type m_type { Type::Invalid };
WebCore::IntSize m_size;
Vector<std::unique_ptr<RenderTarget>, s_maximumBuffers> m_freeTargets;
Vector<std::unique_ptr<RenderTarget>, s_maximumBuffers> m_lockedTargets;
#if USE(GBM)
Lock m_dmabufFormatLock;
BufferFormat m_dmabufFormat WTF_GUARDED_BY_LOCK(m_dmabufFormatLock);
bool m_dmabufFormatChanged WTF_GUARDED_BY_LOCK(m_dmabufFormatLock) { false };
#endif
};
CheckedRef<ThreadedCompositor> m_compositor;
uint64_t m_id { 0 };
SwapChain m_swapChain;
RenderTarget* m_target { nullptr };
bool m_isVisible { false };
bool m_useExplicitSync { false };
#if ENABLE(DAMAGE_TRACKING)
WebCore::Damage m_frameDamage;
#endif
std::unique_ptr<RunLoop::Timer> m_releaseUnusedBuffersTimer;
};
} // namespace WebKit
#endif // (PLATFORM(GTK) || (PLATFORM(WPE) && ENABLE(WPE_PLATFORM)))
|