diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-06-30 20:54:04 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-06-30 21:49:35 -0400 |
commit | 0520784b29a0528df91d20108a6569a3f441a3e7 (patch) | |
tree | 668f6bcbdc2bf0fa0d2373d7a2f5c3b0d97346bb /x11-wm/mutter | |
parent | profiles: mask xwayland+mutter[video_cards_nvidia] on most arches (diff) | |
download | gentoo-0520784b29a0528df91d20108a6569a3f441a3e7.tar.gz gentoo-0520784b29a0528df91d20108a6569a3f441a3e7.tar.bz2 gentoo-0520784b29a0528df91d20108a6569a3f441a3e7.zip |
x11-wm/mutter: add support for eglstream with VIDEO_CARDS=nvidia
Along with support being added to >=xwayland-21.1.1.901, provides a
reasonable experience on wayland for nvidia users (like with kwin).
eglstream may have uses for non-nvidia in the future but
realistically is only useful for nvidia right now.
Acked-by: Matt Turner <mattst88@gentoo.org>
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-wm/mutter')
-rw-r--r-- | x11-wm/mutter/mutter-40.2.1.ebuild | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/x11-wm/mutter/mutter-40.2.1.ebuild b/x11-wm/mutter/mutter-40.2.1.ebuild index 36f6f75bc571..62bbdb155ee3 100644 --- a/x11-wm/mutter/mutter-40.2.1.ebuild +++ b/x11-wm/mutter/mutter-40.2.1.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/mutter/" LICENSE="GPL-2+" SLOT="0/8" # 0/libmutter_api_version - ONLY gnome-shell (or anything using mutter-clutter-<api_version>.pc) should use the subslot -IUSE="elogind input_devices_wacom +introspection screencast sysprof systemd test udev wayland" +IUSE="elogind input_devices_wacom +introspection screencast sysprof systemd test udev wayland video_cards_nvidia" # native backend requires gles3 for hybrid graphics blitting support, udev and a logind provider REQUIRED_USE=" wayland? ( ^^ ( elogind systemd ) udev ) @@ -65,6 +65,7 @@ DEPEND=" systemd? ( sys-apps/systemd ) elogind? ( sys-auth/elogind ) x11-base/xorg-server[wayland] + video_cards_nvidia? ( gui-libs/egl-wayland ) ) udev? ( >=dev-libs/libgudev-232:= >=virtual/libudev-232-r1:= ) @@ -109,8 +110,6 @@ src_configure() { $(meson_use wayland) $(meson_use wayland native_backend) $(meson_use screencast remote_desktop) - -Degl_device=false # This should be dependent on wayland,video_drivers_nvidia, once eglstream support is there - -Dwayland_eglstream=false # requires packages egl-wayland for wayland-eglstream-protocols.pc $(meson_use udev) -Dudev_dir=$(get_udevdir) $(meson_use input_devices_wacom libwacom) @@ -130,6 +129,19 @@ src_configure() { # TODO: relies on default settings, but in Gentoo we might have some more packages we want to give Xgrab access (mostly virtual managers and remote desktops) #xwayland_grab_default_access_rules ) + + if use wayland && use video_cards_nvidia; then + emesonargs+=( + -Degl_device=true + -Dwayland_eglstream=true + ) + else + emsonargs+=( + -Degl_device=false + -Dwayland_eglstream=false + ) + fi + meson_src_configure } |