summaryrefslogtreecommitdiff
path: root/mozilla-1467125.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-10-08 14:09:44 +0200
committerMartin Stransky <stransky@redhat.com>2018-10-08 14:09:44 +0200
commitd37312c85acfb1a4754989329dfe326b15e88f02 (patch)
tree6251d7c1d3e78108035ee19d3f9051270ce370d0 /mozilla-1467125.patch
parentUpdated to latest upstream (62.0.3) (diff)
downloadlibrewolf-fedora-ff-d37312c85acfb1a4754989329dfe326b15e88f02.tar.gz
librewolf-fedora-ff-d37312c85acfb1a4754989329dfe326b15e88f02.tar.bz2
librewolf-fedora-ff-d37312c85acfb1a4754989329dfe326b15e88f02.zip
Added new Wayland patches from Firefox 63, Added pipewire patch, Enabled Wayland by default for Fedora 30
Diffstat (limited to 'mozilla-1467125.patch')
-rw-r--r--mozilla-1467125.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/mozilla-1467125.patch b/mozilla-1467125.patch
deleted file mode 100644
index 375ac49..0000000
--- a/mozilla-1467125.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/widget/gtk/WindowSurfaceWayland.cpp b/widget/gtk/WindowSurfaceWayland.cpp
---- a/widget/gtk/WindowSurfaceWayland.cpp
-+++ b/widget/gtk/WindowSurfaceWayland.cpp
-@@ -146,18 +146,19 @@ static StaticMutex gWaylandDisplaysMutex
- //
- // nsWaylandDisplay is our interface to wayland compositor. It provides wayland
- // global objects as we need (wl_display, wl_shm) and operates wl_event_queue on
- // compositor (not the main) thread.
- static nsWaylandDisplay* WaylandDisplayGet(wl_display *aDisplay);
- static void WaylandDisplayRelease(wl_display *aDisplay);
- static void WaylandDisplayLoop(wl_display *aDisplay);
-
--// TODO: is the 60pfs loop correct?
--#define EVENT_LOOP_DELAY (1000/60)
-+// TODO: Bug 1467125 - We need to integrate wl_display_dispatch_queue_pending() with
-+// compositor event loop.
-+#define EVENT_LOOP_DELAY (1000/240)
-
- // Get WaylandDisplay for given wl_display and actual calling thread.
- static nsWaylandDisplay*
- WaylandDisplayGetLocked(wl_display *aDisplay, const StaticMutexAutoLock&)
- {
- nsWaylandDisplay* waylandDisplay = nullptr;
-
- int len = gWaylandDisplays.Count();
-
bgstack15