-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: * Skia is used instead of Cairo for 2D rendering, and GPU rendering is enabled by default. * Offscreen Canvas is now enabled by default. * Add support for system tracing using Sysprof. * Add new API to load settings from a config file. * Add a new setting to toggle 2D Canvas acceleration (enabled by default). * Undeprecate console messages API and make it available in the 2.0 API. * Fix login QR code not shown in WhatsApp web. * Disable PSON by default again in GTK 3 API versions. * Disable DMABuf video sink by default to prevent file descriptor leaks. * Fix the build with GCC 13. * Fix several crashes and rendering issues. Release Notes: * https://wpewebkit.org/release/wpewebkit-2.46.0.html * https://wpewebkit.org/release/wpewebkit-2.46.1.html wip
- Loading branch information
Showing
4 changed files
with
28 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 0 additions & 28 deletions
28
...owser/webkitgtk/webkitgtk/0001-Activate-HAVE_MISSING_STD_FILESYSTEM_PATH_CONSTRUCTO.patch
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
recipes-browser/webkitgtk/webkitgtk/fix-bmalloc-armhf.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
From: Alberto Garcia <[email protected]> | ||
Subject: Fix the armhf build if bmalloc is enabled | ||
Bug: https://bugs.webkit.org/show_bug.cgi?id=278858 | ||
Index: webkitgtk/Source/WebKit/UIProcess/gtk/PointerLockManagerX11.cpp | ||
=================================================================== | ||
--- webkitgtk.orig/Source/WebKit/UIProcess/gtk/PointerLockManagerX11.cpp | ||
+++ webkitgtk/Source/WebKit/UIProcess/gtk/PointerLockManagerX11.cpp | ||
@@ -29,10 +29,10 @@ | ||
#if PLATFORM(X11) | ||
|
||
#include "WebPageProxy.h" | ||
-#include <X11/Xlib.h> | ||
#include <gtk/gtk.h> | ||
#include <wtf/TZoneMallocInlines.h> | ||
#include <wtf/glib/GRefPtr.h> | ||
+#include <X11/Xlib.h> | ||
|
||
#if USE(GTK4) | ||
#include <gdk/x11/gdkx.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters