mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 17:12:07 +00:00
* Use GTK sink for Wayland liveview Keep native Wayland sessions on the GTK backend and use a GTK widget based GStreamer sink for Bambu liveview instead of the Wayland video overlay path, which can render black on NVIDIA/Hyprland. Keep the existing wxMediaCtrl path for X11 and continue preferring software H.264 decoding while demoting GL and hardware decoder paths that caused liveview crashes. * Narrow Linux liveview fix to native Wayland * Tighten native Wayland liveview setup * Tighten Wayland liveview teardown and rank setup * Package GStreamer gtksink for Wayland liveview --------- Co-authored-by: SoftFever <softfeverever@gmail.com>
51 lines
913 B
Bash
51 lines
913 B
Bash
#!/bin/bash
|
|
|
|
REQUIRED_DEV_PACKAGES=(
|
|
autoconf
|
|
automake
|
|
cmake
|
|
dbus-1-devel
|
|
eglexternalplatform-devel
|
|
extra-cmake-modules
|
|
file
|
|
gcc
|
|
gcc-c++
|
|
gettext
|
|
git
|
|
gstreamer-devel
|
|
gstreamer-plugins-good-gtk
|
|
gtk3-devel
|
|
libmspack-devel
|
|
libquadmath-devel
|
|
libsecret-devel
|
|
libspnav-devel
|
|
libtool
|
|
m4
|
|
glu-devel
|
|
ninja-build
|
|
openssl-devel
|
|
perl-FindBin-Real
|
|
texinfo
|
|
wayland-protocols-devel
|
|
webkit2gtk4-devel
|
|
wget
|
|
libcurl-devel
|
|
)
|
|
|
|
if [[ -n "$UPDATE_LIB" ]]
|
|
then
|
|
NEEDED_PKGS=()
|
|
for PKG in "${REQUIRED_DEV_PACKAGES[@]}"; do
|
|
rpm -q "${PKG}" > /dev/null || NEEDED_PKGS+=("${PKG}")
|
|
done
|
|
|
|
if [[ "${#NEEDED_PKGS[*]}" -gt 0 ]]; then
|
|
sudo zypper install -y "${NEEDED_PKGS[@]}"
|
|
fi
|
|
echo -e "done\n"
|
|
exit 0
|
|
fi
|
|
|
|
export FOUND_GTK3_DEV
|
|
FOUND_GTK3_DEV=$(rpm -qa | grep -P '^gtk3-devel' || true)
|