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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
/*
* Copyright (C) 2016, 2019 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 COMPUTER, 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 COMPUTER, 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.
*/
#include "config.h"
#include "AcceleratedBackingStoreWayland.h"
#if PLATFORM(WAYLAND)
#include "LayerTreeContext.h"
#include "WebPageProxy.h"
#include <WebCore/CairoUtilities.h>
#include <WebCore/GLContext.h>
#include <WebCore/Region.h>
#include <epoxy/egl.h>
#include <epoxy/gl.h>
#include <wpe/fdo-egl.h>
#include <wpe/wpe.h>
#include <wtf/glib/GUniquePtr.h>
// These includes need to be in this order because wayland-egl.h defines WL_EGL_PLATFORM
// and eglplatform.h, included by egl.h, checks that to decide whether it's Wayland platform.
#if USE(GTK4)
#include <gdk/wayland/gdkwayland.h>
#else
#include <gdk/gdkwayland.h>
#endif
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
#include <wayland-server.h>
#include <wpe/unstable/fdo-shm.h>
#endif
namespace WebKit {
using namespace WebCore;
enum class WaylandImpl { Unsupported, EGL, SHM };
static std::optional<WaylandImpl> s_waylandImpl;
static bool tryInitializeEGL()
{
auto* eglDisplay = PlatformDisplay::sharedDisplay().eglDisplay();
const char* extensions = eglQueryString(eglDisplay, EGL_EXTENSIONS);
if (!GLContext::isExtensionSupported(extensions, "EGL_WL_bind_wayland_display"))
return false;
if (!wpe_fdo_initialize_for_egl_display(eglDisplay))
return false;
GLContext::ScopedGLContext glContext(GLContext::createOffscreen(PlatformDisplay::sharedDisplay()));
if (!epoxy_has_gl_extension("GL_OES_EGL_image") && !epoxy_has_gl_extension("GL_OES_EGL_image_external"))
return false;
s_waylandImpl = WaylandImpl::EGL;
return true;
}
static bool tryInitializeSHM()
{
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
if (!wpe_fdo_initialize_shm())
return false;
s_waylandImpl = WaylandImpl::SHM;
return true;
#else
return false;
#endif
}
bool AcceleratedBackingStoreWayland::checkRequirements()
{
if (s_waylandImpl)
return s_waylandImpl.value() != WaylandImpl::Unsupported;
if (tryInitializeEGL())
return true;
if (tryInitializeSHM())
return true;
WTFLogAlways("AcceleratedBackingStoreWayland requires glEGLImageTargetTexture2D or shm interface");
s_waylandImpl = WaylandImpl::Unsupported;
return false;
}
std::unique_ptr<AcceleratedBackingStoreWayland> AcceleratedBackingStoreWayland::create(WebPageProxy& webPage)
{
ASSERT(checkRequirements());
return std::unique_ptr<AcceleratedBackingStoreWayland>(new AcceleratedBackingStoreWayland(webPage));
}
AcceleratedBackingStoreWayland::AcceleratedBackingStoreWayland(WebPageProxy& webPage)
: AcceleratedBackingStore(webPage)
{
static struct wpe_view_backend_exportable_fdo_egl_client exportableEGLClient = {
// export_egl_image
nullptr,
// export_fdo_egl_image
[](void* data, struct wpe_fdo_egl_exported_image* image)
{
static_cast<AcceleratedBackingStoreWayland*>(data)->displayImage(image);
},
// padding
nullptr, nullptr, nullptr
};
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
static struct wpe_view_backend_exportable_fdo_client exportableClient = {
nullptr,
nullptr,
// export_shm_buffer
[](void* data, struct wpe_fdo_shm_exported_buffer* buffer)
{
static_cast<AcceleratedBackingStoreWayland*>(data)->displayBuffer(buffer);
},
nullptr,
nullptr,
};
#endif
auto viewSize = webPage.viewSize();
switch (s_waylandImpl.value()) {
case WaylandImpl::EGL:
m_exportable = wpe_view_backend_exportable_fdo_egl_create(&exportableEGLClient, this, viewSize.width(), viewSize.height());
break;
case WaylandImpl::SHM:
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
m_exportable = wpe_view_backend_exportable_fdo_create(&exportableClient, this, viewSize.width(), viewSize.height());
break;
#else
FALLTHROUGH;
#endif
case WaylandImpl::Unsupported:
RELEASE_ASSERT_NOT_REACHED();
}
wpe_view_backend_initialize(wpe_view_backend_exportable_fdo_get_view_backend(m_exportable));
}
AcceleratedBackingStoreWayland::~AcceleratedBackingStoreWayland()
{
if (s_waylandImpl.value() == WaylandImpl::EGL) {
if (m_egl.pendingImage)
wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image(m_exportable, m_egl.pendingImage);
if (m_egl.committedImage)
wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image(m_exportable, m_egl.committedImage);
if (m_egl.viewTexture) {
if (makeContextCurrent())
glDeleteTextures(1, &m_egl.viewTexture);
}
}
wpe_view_backend_exportable_fdo_destroy(m_exportable);
if (m_gdkGLContext && m_gdkGLContext.get() == gdk_gl_context_get_current())
gdk_gl_context_clear_current();
}
void AcceleratedBackingStoreWayland::unrealize()
{
if (!m_gdkGLContext)
return;
if (m_egl.viewTexture) {
if (makeContextCurrent())
glDeleteTextures(1, &m_egl.viewTexture);
m_egl.viewTexture = 0;
}
if (m_gdkGLContext.get() == gdk_gl_context_get_current())
gdk_gl_context_clear_current();
m_gdkGLContext = nullptr;
}
void AcceleratedBackingStoreWayland::ensureGLContext()
{
ASSERT(s_waylandImpl.value() == WaylandImpl::EGL);
GUniqueOutPtr<GError> error;
#if USE(GTK4)
m_gdkGLContext = adoptGRef(gdk_surface_create_gl_context(gtk_native_get_surface(gtk_widget_get_native(m_webPage.viewWidget())), &error.outPtr()));
#else
m_gdkGLContext = adoptGRef(gdk_window_create_gl_context(gtk_widget_get_window(m_webPage.viewWidget()), &error.outPtr()));
#endif
if (!m_gdkGLContext)
g_error("GDK is not able to create a GL context: %s.", error->message);
if (!gdk_gl_context_realize(m_gdkGLContext.get(), &error.outPtr()))
g_error("GDK failed to relaize the GL context: %s.", error->message);
}
bool AcceleratedBackingStoreWayland::makeContextCurrent()
{
if (!gtk_widget_get_realized(m_webPage.viewWidget()))
return false;
ensureGLContext();
gdk_gl_context_make_current(m_gdkGLContext.get());
return true;
}
void AcceleratedBackingStoreWayland::update(const LayerTreeContext& context)
{
if (m_surfaceID == context.contextID)
return;
m_surfaceID = context.contextID;
switch (s_waylandImpl.value()) {
case WaylandImpl::EGL:
if (m_egl.pendingImage) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image(m_exportable, m_egl.pendingImage);
m_egl.pendingImage = nullptr;
}
break;
case WaylandImpl::SHM:
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
if (m_shm.pendingFrame) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
m_shm.pendingFrame = false;
}
break;
#else
FALLTHROUGH;
#endif
case WaylandImpl::Unsupported:
RELEASE_ASSERT_NOT_REACHED();
}
}
int AcceleratedBackingStoreWayland::renderHostFileDescriptor()
{
return wpe_view_backend_get_renderer_host_fd(wpe_view_backend_exportable_fdo_get_view_backend(m_exportable));
}
void AcceleratedBackingStoreWayland::displayImage(struct wpe_fdo_egl_exported_image* image)
{
ASSERT(s_waylandImpl.value() == WaylandImpl::EGL);
if (!m_surfaceID) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
if (image != m_egl.committedImage)
wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image(m_exportable, image);
return;
}
if (m_egl.pendingImage)
wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image(m_exportable, m_egl.pendingImage);
m_egl.pendingImage = image;
m_webPage.setViewNeedsDisplay(IntRect(IntPoint::zero(), m_webPage.viewSize()));
}
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
void AcceleratedBackingStoreWayland::displayBuffer(struct wpe_fdo_shm_exported_buffer* buffer)
{
ASSERT(s_waylandImpl.value() == WaylandImpl::SHM);
if (!m_surfaceID) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
wpe_view_backend_exportable_fdo_dispatch_release_shm_exported_buffer(m_exportable, buffer);
return;
}
m_shm.pendingFrame = true;
struct wl_shm_buffer* shmBuffer = wpe_fdo_shm_exported_buffer_get_shm_buffer(buffer);
auto format = wl_shm_buffer_get_format(shmBuffer);
if (format != WL_SHM_FORMAT_ARGB8888 && format != WL_SHM_FORMAT_XRGB8888) {
wpe_view_backend_exportable_fdo_dispatch_release_shm_exported_buffer(m_exportable, buffer);
return;
}
int32_t width = wl_shm_buffer_get_width(shmBuffer);
int32_t height = wl_shm_buffer_get_height(shmBuffer);
int32_t stride = wl_shm_buffer_get_stride(shmBuffer);
int32_t surfaceStride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, width);
if (!m_surface || cairo_image_surface_get_width(m_surface.get()) != width || cairo_image_surface_get_height(m_surface.get()) != height) {
auto* surfaceData = fastZeroedMalloc(height * surfaceStride);
m_surface = adoptRef(cairo_image_surface_create_for_data(static_cast<unsigned char*>(surfaceData), CAIRO_FORMAT_ARGB32, width, height, surfaceStride));
static cairo_user_data_key_t s_surfaceDataKey;
cairo_surface_set_user_data(m_surface.get(), &s_surfaceDataKey, surfaceData, [](void* data) {
fastFree(data);
});
cairo_surface_set_device_scale(m_surface.get(), m_webPage.deviceScaleFactor(), m_webPage.deviceScaleFactor());
}
unsigned char* surfaceData = cairo_image_surface_get_data(m_surface.get());
wl_shm_buffer_begin_access(shmBuffer);
auto* data = static_cast<unsigned char*>(wl_shm_buffer_get_data(shmBuffer));
for (int32_t y = 0; y < height; ++y) {
for (int32_t x = 0; x < width; ++x) {
surfaceData[surfaceStride * y + 4 * x + 0] = data[stride * y + 4 * x + 0];
surfaceData[surfaceStride * y + 4 * x + 1] = data[stride * y + 4 * x + 1];
surfaceData[surfaceStride * y + 4 * x + 2] = data[stride * y + 4 * x + 2];
surfaceData[surfaceStride * y + 4 * x + 3] = data[stride * y + 4 * x + 3];
}
}
wl_shm_buffer_end_access(shmBuffer);
wpe_view_backend_exportable_fdo_dispatch_release_shm_exported_buffer(m_exportable, buffer);
cairo_surface_mark_dirty(m_surface.get());
m_webPage.setViewNeedsDisplay(IntRect(IntPoint::zero(), m_webPage.viewSize()));
}
#endif
bool AcceleratedBackingStoreWayland::tryEnsureTexture(unsigned& texture, IntSize& textureSize)
{
ASSERT(s_waylandImpl.value() == WaylandImpl::EGL);
if (!makeContextCurrent())
return false;
if (m_egl.pendingImage) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
if (m_egl.committedImage)
wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image(m_exportable, m_egl.committedImage);
m_egl.committedImage = m_egl.pendingImage;
m_egl.pendingImage = nullptr;
}
if (!m_egl.committedImage)
return false;
if (!m_egl.viewTexture) {
glGenTextures(1, &m_egl.viewTexture);
glBindTexture(GL_TEXTURE_2D, m_egl.viewTexture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
}
glBindTexture(GL_TEXTURE_2D, m_egl.viewTexture);
glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, wpe_fdo_egl_exported_image_get_egl_image(m_egl.committedImage));
texture = m_egl.viewTexture;
textureSize = { static_cast<int>(wpe_fdo_egl_exported_image_get_width(m_egl.committedImage)), static_cast<int>(wpe_fdo_egl_exported_image_get_height(m_egl.committedImage)) };
return true;
}
#if USE(GTK4)
void AcceleratedBackingStoreWayland::snapshot(GtkSnapshot* gtkSnapshot)
{
switch (s_waylandImpl.value()) {
case WaylandImpl::EGL: {
GLuint texture;
IntSize textureSize;
if (tryEnsureTexture(texture, textureSize)) {
float deviceScaleFactor = m_webPage.deviceScaleFactor();
graphene_rect_t bounds = GRAPHENE_RECT_INIT(0, 0, static_cast<float>(textureSize.width() / deviceScaleFactor), static_cast<float>(textureSize.height() / deviceScaleFactor));
GRefPtr<GdkTexture> gdkTexture = adoptGRef(gdk_gl_texture_new(m_gdkGLContext.get(), texture, textureSize.width(), textureSize.height(), nullptr, nullptr));
gtk_snapshot_append_texture(gtkSnapshot, gdkTexture.get(), &bounds);
}
break;
}
case WaylandImpl::SHM:
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
if (m_shm.pendingFrame) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
m_shm.pendingFrame = false;
}
if (m_surface) {
graphene_rect_t bounds = GRAPHENE_RECT_INIT(0, 0, static_cast<float>(cairo_image_surface_get_width(m_surface.get())), static_cast<float>(cairo_image_surface_get_height(m_surface.get())));
RefPtr<cairo_t> cr = adoptRef(gtk_snapshot_append_cairo(gtkSnapshot, &bounds));
cairo_set_source_surface(cr.get(), m_surface.get(), 0, 0);
cairo_set_operator(cr.get(), CAIRO_OPERATOR_OVER);
cairo_paint(cr.get());
cairo_surface_flush(m_surface.get());
}
break;
#else
FALLTHROUGH;
#endif // WPE_FDO_CHECK_VERSION
case WaylandImpl::Unsupported:
RELEASE_ASSERT_NOT_REACHED();
}
}
#else
bool AcceleratedBackingStoreWayland::paint(cairo_t* cr, const IntRect& clipRect)
{
switch (s_waylandImpl.value()) {
case WaylandImpl::EGL: {
GLuint texture;
IntSize textureSize;
if (tryEnsureTexture(texture, textureSize)) {
cairo_save(cr);
gdk_cairo_draw_from_gl(cr, gtk_widget_get_window(m_webPage.viewWidget()), texture, GL_TEXTURE, m_webPage.deviceScaleFactor(), 0, 0, textureSize.width(), textureSize.height());
cairo_restore(cr);
}
break;
}
case WaylandImpl::SHM:
#if WPE_FDO_CHECK_VERSION(1, 7, 0)
if (m_shm.pendingFrame) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
m_shm.pendingFrame = false;
}
if (m_surface) {
cairo_save(cr);
// The compositor renders the texture flipped for gdk_cairo_draw_from_gl, fix that here.
cairo_matrix_t transform;
cairo_matrix_init(&transform, 1, 0, 0, -1, 0, cairo_image_surface_get_height(m_surface.get()) / m_webPage.deviceScaleFactor());
cairo_transform(cr, &transform);
cairo_rectangle(cr, clipRect.x(), clipRect.y(), clipRect.width(), clipRect.height());
cairo_set_source_surface(cr, m_surface.get(), 0, 0);
cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
cairo_fill(cr);
cairo_restore(cr);
cairo_surface_flush(m_surface.get());
}
break;
#else
FALLTHROUGH;
#endif // WPE_FDO_CHECK_VERSION
case WaylandImpl::Unsupported:
RELEASE_ASSERT_NOT_REACHED();
}
return true;
}
#endif
} // namespace WebKit
#endif // PLATFORM(WAYLAND)
|