xf86-video-intel: 2 commits - configure.ac NEWS

Carl Worth cworth at kemper.freedesktop.org
Mon Jun 14 17:35:02 PDT 2010


 NEWS         |   68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |    2 -
 2 files changed, 69 insertions(+), 1 deletion(-)

New commits:
commit 68c8b3f12482489f2e2e8040fd6728f1a2b9e420
Author: Carl Worth <cworth at cworth.org>
Date:   Mon Jun 14 17:34:38 2010 -0700

    NEWS: Add notes for 2.11.901
    
    This is the 2.12 RC1 snapshot we're making now.

diff --git a/NEWS b/NEWS
index d6adb2e..ffccffd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,71 @@
+Snapshot 2.11.901 (2010-06-14)
+==============================
+This is the first release candidate in preparation for the upcoming
+2.12.0 release. We will appreciate any feedback we can get from
+testing of this snapshot to improve the 2.12.0 release.
+
+New requirements compared to 2.10
+---------------------------------
+ * Libdrm >= 2.4.19
+
+Major performance improvements
+------------------------------
+There have been many performance improvements targeting the
+915G/945G/Pineview graphics chipsets (thank to Chris Wilson!). Areas
+improved include:
+
+ * Major improvements to glyph rendering
+
+ * Avoid software fallback when using extended desktops, (for example,
+   video playback)
+
+ * Better performance when using large windows, (for example with
+   firefox scrolling)
+
+ * Avoiding migration ping-pong with gigantic drawing
+
+The following speedups (measured with cairo-perf-trace/cairo-traces)
+capture some of the improvements. These were measured on a Pineview
+system with a very recent X server, (from git just before 1.8.1). This
+compares how this 2.12 release candidate improves performance compared
+to 2.11.0:
+
+	Trace			Speedup
+	-----			-------
+	ocitysmap		5.41x speedup
+	firefox-talos-gfx       2.41x speedup
+	gnome-terminal-vim      2.15x speedup
+	poppler                 1.86x speedup
+	firefox-planet-gnome	1.43x speedup
+	midori-zoomed		1.39x speedup
+	swfdec-giant-steps      1.36x speedup
+	xfce4-terminal-a1	1.17x speedup
+	evolution		1.09x speedup
+	swfdec-youtube		1.06x speedup
+
+Other improvements
+------------------
+Daniel Vetter improved Xvmc and overlay, adding GEM support.
+
+Bug fixes
+---------
+There have been many conformance improvements targeting the
+915G/945G/Pineview graphics chipsets. The rendercheck test suite
+passes once again and there has been a significant reduction in the
+number of errors detected by the cairo test suite (notably center
+sampling and EXTEND_NONE behaviors are fixed).
+
+Other notable bug fixes include:
+
+ * Fix for bug 28446 Garbled fonts with Mathematica
+   https://bugs.freedesktop.org/show_bug.cgi?id=28446
+
+ * Fixes for page-flipping and other DRI2-handling bugs, (Thanks Jesse
+   Barnes, and Kristian Høgsberg)
+
+ * Avoid corruption when using extended desktops, (for example, video
+   playback)
+
 Release 2.11.0 (2010-03-29)
 ===========================
 New in 2.11: DRI2 and page flipping
commit 8899cd03e2e7ee673e8b3b2a9d2873839cdc1bf8
Author: Carl Worth <cworth at cworth.org>
Date:   Thu Jun 10 15:38:54 2010 -0700

    Fix to require libdrm 2.4.19 or newer.
    
    This is necessary for the drm_intel_bo_emit_reloc_fence function which
    did not exist in 2.4.16 which is all we were requiring earlier.

diff --git a/configure.ac b/configure.ac
index 45663c8..d565e07 100644
--- a/configure.ac
+++ b/configure.ac
@@ -89,7 +89,7 @@ XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
 
 # Checks for pkg-config packages
 PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6 xproto fontsproto $REQUIRED_MODULES])
-PKG_CHECK_MODULES(DRM, [libdrm >= 2.4.16])
+PKG_CHECK_MODULES(DRM, [libdrm >= 2.4.19])
 PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
                   HAVE_XEXTPROTO_71="yes"; AC_DEFINE(HAVE_XEXTPROTO_71, 1, [xextproto 7.1 available]),


More information about the xorg-commit mailing list