Skip to content

Commit 0fe6863

Browse files
committed
wpe-simple-launcher: Apply GL sink regression workaround conditionally
... just for raspberrypi5 Change-Type: minor
1 parent e93b33c commit 0fe6863

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

recipes-browser/wpe-simple-launcher/wpe-simple-launcher/wpe-exported-wayland

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ export WEBKIT_GST_DMABUF_SINK_ENABLED=1
2424
# [GStreamer] Add support for DMA-BUF to GL video sink
2525
# https://bugs.webkit.org/show_bug.cgi?id=279672
2626
# XXX Reported in : https://bugs.webkit.org/show_bug.cgi?id=288464
27-
export WEBKIT_GST_DISABLE_GL_SINK=1
27+
#
28+
# Apply regression workaround only if running on raspberrypi5
29+
if [ "$(hostname)" = "raspberrypi5" ]; then
30+
export WEBKIT_GST_DISABLE_GL_SINK=1
31+
fi
2832

2933
# Ensure Wayland and XDG runtime environment variables are propagated
3034
WAYLAND_DISPLAY=$(strings < "/proc/$(pidof weston-keyboard)/environ" | grep WAYLAND_DISPLAY)

0 commit comments

Comments
 (0)