Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package xf86-video-intel for
openSUSE:Factory checked in at 2023-10-19 22:47:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xf86-video-intel (Old)
and /work/SRC/openSUSE:Factory/.xf86-video-intel.new.1945 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xf86-video-intel"
Thu Oct 19 22:47:22 2023 rev:86 rq:1118589 version:2.99.917.916_g31486f40
Changes:
--------
--- /work/SRC/openSUSE:Factory/xf86-video-intel/xf86-video-intel.changes
2022-05-16 18:09:53.197343510 +0200
+++
/work/SRC/openSUSE:Factory/.xf86-video-intel.new.1945/xf86-video-intel.changes
2023-10-19 22:49:46.967792668 +0200
@@ -1,0 +2,15 @@
+Wed Oct 18 13:07:14 UTC 2023 - Stefan Dirsch <[email protected]>
+
+- renamed n_Mesa-i965-crocus.patch to n_Mesa-i965-crocus-iris.patch
+- n_Mesa-i965-crocus-iris.patch
+ * use "iris" instead of "crocus" for anything newer than Haswell
+
+-------------------------------------------------------------------
+Wed Oct 18 12:37:29 UTC 2023 - Stefan Dirsch <[email protected]>
+
+- n_Mesa-i965-crocus.patch
+ * Mesa's DRI driver is now called "crocus" (previously "i965");
+ fixes hardware OpenGL support when still using "intel" X
+ driver instead of "modesetting" one ...
+
+-------------------------------------------------------------------
New:
----
n_Mesa-i965-crocus-iris.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xf86-video-intel.spec ++++++
--- /var/tmp/diff_new_pack.zjK1wm/_old 2023-10-19 22:49:47.567814430 +0200
+++ /var/tmp/diff_new_pack.zjK1wm/_new 2023-10-19 22:49:47.567814430 +0200
@@ -1,7 +1,7 @@
#
# spec file for package xf86-video-intel
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -35,6 +35,7 @@
#Git-Archive: git archive --format=tar.gz --prefix %{name}-%{version}/ master
Source0: %{name}-%{version}.tar.bz2
Source99: baselibs.conf
+Patch0: n_Mesa-i965-crocus-iris.patch
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
@@ -134,6 +135,7 @@
%prep
%setup -q -n %{name}-%{_version}
+%patch0 -p1
%build
# We have some -z now related errors during X default startup (boo#1197994):
++++++ n_Mesa-i965-crocus-iris.patch ++++++
Index: xf86-video-intel-2.99.917/src/sna/sna_dri2.c
===================================================================
--- xf86-video-intel-2.99.917.orig/src/sna/sna_dri2.c
+++ xf86-video-intel-2.99.917/src/sna/sna_dri2.c
@@ -3707,8 +3707,10 @@ static const char *dri_driver_name(struc
return has_i830_dri() ? "i830" : "i915";
else if (sna->kgem.gen < 040)
return "i915";
+ else if (sna->kgem.gen < 0100)
+ return "crocus";
else
- return "i965";
+ return "iris";
}
return s;
Index: xf86-video-intel-2.99.917/src/uxa/intel_dri.c
===================================================================
--- xf86-video-intel-2.99.917.orig/src/uxa/intel_dri.c
+++ xf86-video-intel-2.99.917/src/uxa/intel_dri.c
@@ -1540,8 +1540,10 @@ static const char *dri_driver_name(intel
return has_i830_dri() ? "i830" : "i915";
else if (INTEL_INFO(intel)->gen < 040)
return "i915";
+ else if (INTEL_INFO(intel)->gen < 0100)
+ return "crocus";
else
- return "i965";
+ return "iris";
}
return s;